你使用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