问题:新建springboot项目,将boostrap模板导入。访问index.html正常。从index.html访问别的页面404错误。
解决:开始是将html文件全放templates文件夹下,而springboot默认static文件夹之外的页面需要通过controller访问(好像是websecurity权限控制)。
把除index.html外的页面放static文件夹,再运行可以正常访问。static文件夹下的文件可在websecurity配置类中*配置过滤拦截。
问题:新建springboot项目,将boostrap模板导入。访问index.html正常。从index.html访问别的页面404错误。
解决:开始是将html文件全放templates文件夹下,而springboot默认static文件夹之外的页面需要通过controller访问(好像是websecurity权限控制)。
把除index.html外的页面放static文件夹,再运行可以正常访问。static文件夹下的文件可在websecurity配置类中*配置过滤拦截。