1). 場景
新增 redis 之後,出現 security 相關類找不到的問題
2). 解決
引入 spring security即可
org.springframework.boot
spring-boot-starter-security
2.1.5.release
3). 場景
引入spring security之後訪問介面報 401
4). 解決
引入執行器spring-boot-starter-actuator即可
org.springframework.boot
spring-boot-starter-actuator
2.1.5.release
5). 場景
引入spring-boot-starter-actuator之後訪問介面報 403
6). 解決
新增 websecurity 配置
/**
* 神獸保佑
* **無bug!
* @author mazaiting
* @date 2019-06-26
* @decription web 安全配置
*/@enablewebsecurity
@configuration
public class websecurityconfig extends websecurityconfigureradapter
}
springboot專案訪問靜態資源 預設方式
預設配置的 對映到 static 或 public resources meta inf resources 其中預設配置的 webjars 對映到 classpath meta inf resources webjars ps 上面的 static public resources 等目錄都在 c...
SpringBoot專案如何訪問jsp頁面
最近在接支付專案,從官方下了個及時到款的demo,想在springboot專案中執行起來,發現訪問jsp的時候直接會訪問到jsp頁面的原始檔。如何在springboot專案中訪問到jsp頁面?1.新增pom依賴 首先在原來的pom檔案基礎上加上這兩個配置 org.springframework.bo...
SpringBoot專案中訪問HTML頁面
springboot預設的頁面對映路徑 即模板檔案存放的位置 為 classpath templates html 靜態檔案路徑為 classpath static 其中可以存放js css等模板共用的靜態檔案。將html頁面存放在 resources 資源目錄 下的 static 目錄中。示例 在...