@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),求解
1 回答
紫极岚
TA贡献3条经验 获得超0个赞
404是找不到页面。。。一定是你的配置出问题了不是thymeleaf的问题。这种情况你就算单纯的写HTML也会报404的。
localhost:端口号/ts/ids
添加回答
举报
0/150
提交
取消