SpringBoot 生产环境模板引入错误
- java中SpringBoot常使用ThymeLeaf模板引擎, 当出现Exception processing template异常时,就是生产环境模板引入错误.
- 解决方法:
- 修改application.properties 文件
spring.thymeleaf.prefix=classpath:templates/ spring.thymeleaf.suffix=.html spring.thymeleaf.mode=LEGACYHTML5 spring.thymeleaf.cache=false
- 修改Controller类的返回路径, 将类注解改为@RestController或者在方法上加@ResponseBody注解
- 修改application.properties 文件