Hi I am trying to add css and js to my project. I have created Spring starter project and have placed css and js files in webapp/resources/ but it's not working.
How should I include them in my .html file? What is the path?
I have also added
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry
.addResourceHandler("/resources/**")
.addResourceLocations("/resources/");
}
to my springConfig class.