Im new in java and spring. I\'m trying to make hello world app and don\'t get what i\'m doing wrong.
here is my directory structure:
test_app
-pom.xm
Use this , it will work always.Good luck :)
@Configuration
@EnableWebMvc
public class WebConfig extends WebMvcConfigurerAdapter {
@Override
public void addResourceHandlers(ResourceHandlerRegistry registry) {
registry.addResourceHandler("/resources/**").addResourceLocations("/public-resources/").setCachePeriod(31556926);`enter code here`
}
}