首页一直出现这个问题解决,是因为访问入口都在admin模块,所以必须在admin的pom里
引入blog模块
template might not exist or might not be accessible by any of the configured Template Resolvers
这个问题
类似mapper找不到问题
路径不对!
添加安全白名单位置
项目中有接口不需要token校验,需要不登录就可以访问,我将这个接口加入了SecurityConfig的.antMatchers("/files/**").anonymous()中(图一),然后直接访问,还是回提示没有权限(图二)
后来参照网上添加了有个白名单列表,配置在application.yml中:
并在JwtAuthenticationTokenFilter重写了shouldNotFilter方法:
然后直接访问ok!