springboot can serve static content files, for example, html, js, css and image, for http request. By default, springboot searches the below directories for the static resources in the class path. classpath:/META-INF/resources/ classpath:/resources/ classpath:/static/ classpath:/public/ So you can put your… Read More