Spring を使用していますか?スプリングブーツ?ジャバEE? Spring Boot を使用することをお勧めします。
Spring Boot は、次のいずれかのディレクトリにある静的 Web リソースを自動的に追加します:
したがって、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 を使用していますか?スプリングブーツ?ジャバEE? Spring Boot を使用することをお勧めします。
Spring Boot は、次のいずれかのディレクトリにある静的 Web リソースを自動的に追加します:
リーリーしたがって、
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