你使用Spring吗?Spring Boot?JavaEE? 我建议使用Spring Boot。
Spring Boot会自动添加位于以下任何目录中的静态网页资源:
/META-INF/resources/ /resources/ /static/ /public/
所以你可以在resources/目录下创建一个public/目录,并将静态内容放在那里。然后可以通过http://localhost:3000/koo.htm访问它们。(假设server.port是3000)
resources/
public/
server.port
你可以在application.properties中使用spring.resources.static-locations来自定义这些目录。
application.properties
spring.resources.static-locations
你可以继续阅读:https://spring.io/blog/2013/12/19/serving-static-web-content-with-spring-boot
你使用Spring吗?Spring Boot?JavaEE? 我建议使用Spring Boot。
Spring Boot会自动添加位于以下任何目录中的静态网页资源:
所以你可以在
resources/
目录下创建一个public/
目录,并将静态内容放在那里。然后可以通过http://localhost:3000/koo.htm访问它们。(假设server.port
是3000)你可以在
application.properties
中使用spring.resources.static-locations
来自定义这些目录。你可以继续阅读:https://spring.io/blog/2013/12/19/serving-static-web-content-with-spring-boot