记录问题:Sprintboot不通过controller直接访问静态html页面

时间:2022-08-14 13:03:02

问题:新建springboot项目,将boostrap模板导入。访问index.html正常。从index.html访问别的页面404错误。

解决:开始是将html文件全放templates文件夹下,而springboot默认static文件夹之外的页面需要通过controller访问(好像是websecurity权限控制)。

把除index.html外的页面放static文件夹,再运行可以正常访问。static文件夹下的文件可在websecurity配置类中*配置过滤拦截。