P粉5936497152023-09-02 12:05:27
你使用Spring吗?Spring Boot?JavaEE? 我建议使用Spring Boot。
Spring Boot会自动添加位于以下任何目录中的静态网页资源:
/META-INF/resources/ /resources/ /static/ /public/
所以你可以在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