springboot+thymeleaf找不到视图的解决方案
springboot+thymeleaf找不到视图
情况:
springboot + thymeleaf打成jar包后,报错,但在eclipse本地跑却可以:
template might not exist or might not be accessible by any of the configured Template Resolvers
yml配置:
spring:
thymeleaf:
cache: false #开发时关闭缓存,不然没法看到实时页面
mode: HTML5 # 用非严格的 HTML
#enabled: true
encoding: UTF-8
prefix: classpath:/templates/
suffix: .html
servlet:
content-type: text/html
controller返回视图:
@RequestMapping("demo")
public String demo(Model model) {
//return "/demo";//这种是有问题的
return "demo";
}
解释:
这里其实是由于我们的yml配置中,已经配置了/templates/,因此如果返回/demo的话,那就会找不到,因为映射视图变成了://demo,所以,这里最好去掉其中一个“/”;
不然打成jar包后,会找不到,这个要作为项目的规范,不然后面发布正式时,太多也不好修改;如果有更好的办法也请告诉我一声,谢谢。
springboot 使用thymeleaf模板遇到的一些问题
使用springboot+thymeleaf遇到一些问题,主要归为如下几点:
1.在/templates目录下创建自定义目录/my,并在该目录下创建index.html,程序中如何访问index.html
2.如果不使用/templates目录作为默认路径,该如何配置
问题1
解决方式:
在controller层方法中通过设置ModelAndView名称的为:my/index,然后返回该ModelAndView,然后该接口方法时就会跳转到index.html
示例代码如下:
@RequestMapping(value="getIndex")
public ModelAndView getIndex(ModelAndView model)throws Exception
{
//访问自定义目录下/templates/my/index.html,要注意路径格式
model.setViewName("my/index");
return model;
}
问题2
解决方式:
在application.properties配置文件中通过spring.thymeleaf.prefix属性进行设置,例如设置默认路径为/templates/my
示例代码如下:
spring.thymeleaf.prefix=classpath:/templates/my
springboot+thymeleaf使用的代码如下:
https://github.com/ingorewho/springboot-develope/tree/master/springboot-thymeleaf
以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341