1、访问html总是404
查了各种方法。
1、有说springboot 和 thymeleaf版本不匹配的(我是springboot.io自动创建的,所以不是这个问题)
2、自己打断点,跟着看,也看不出什么东西
3、查看application.properties文件,取消了手动设置的suffix和prefix(依旧不行)
查看了各种方式后,终于让我发现问题所在了!!
之前自以为是的,在application.properties中配置了这一行代码:
spring.thymeleaf.servlet.content-type=application/json
正确代码应该是:
spring.thymeleaf.mode=HTML
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.cache=false
spring.thymeleaf.servlet.content-type=text/html
靠,就因为手贱, 找问题找了几个小时。
所以,不要用自己的想法去配置这些参数!得不偿失呀!
2、springboot访问html,总是直接返回参数
这个是因为@RestController的原因,这个注解包含了@Controller和@RequestBody,所以直接return "index"并不会跳转到index.html文件,而是直接在页面上输出index。
将@RestController改为@Controller即可