I am new to spring frame work and spring boot.I am trying to add the static html file with CSS,javascript,js. the file structure is
        
Put css files into webapp resources folder:
src/main/webapp/resources/css/ 
Configure resource handler
public class WebConfig extends WebMvcConfigurerAdapter {
        @Override
        public void addResourceHandlers(ResourceHandlerRegistry registry) {
                registry.addResourceHandler("/resources/**")
                        .addResourceLocations("/resources/");
        }
Example projects:
Source: