Spring Boot Static Contents

Location

src/main/resources/static
resources and static are not made by default.
We can put html also, under static.

If you put index.html under static, we can access http://localhost:8080/index.html

ProjectRoot
|- src
    |- main
         |- resources
               |- static
                    |- css
                    |- javascript

Ref

Spring Bootで静的コンテンツを扱う