@RequestMapping("/ts") @Controller public class TestStaticController { @GetMapping("/idx") public String idx() { return "index"; } }
上面controller的代码,index页面放在了resources的templates下
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
也已经添加了 thymeleaf 的依赖,仍然不能访问(404),求解
紫极岚
相关分类