我在templates
下放置了两个html文件:index.html
和test.html
。
index.html
可以正确显示,而我不会通过
test.html
<a href="test.html">Contact Me</a>
然后出现404
。
我在项目中包含了thymeleaf
:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
谢谢。
答案 0 :(得分:0)
最后,我将test.html
移到static
,并将index.html
保留在templates
下。现在我可以在test.html
中加载index.html
。首先,我应该将所有静态资源放在static
下。