Skip to content
Advertisement

noHandlerFound in Spring for CSS

I am learning Spring MVC and I try to get some experience. I wrote an app and deployed it to Tomcat serve. At run time, the browser gets a 404 code for the CSS and Tomcat “WARNING [http-nio-8080-exec-12] org.springframework.web.servlet.DispatcherServlet.noHandlerFound No mapping for GET /SpringC5BuildingSpringWebApplication/resources/style.css” Can you please give me some hints of what could be wrong? Below is my code:

App initializer

JavaScript

}

WebConfig

JavaScript

Controller

JavaScript

Webpage

JavaScript

WebXML

JavaScript

Folder structure

The CSS file is inserted in many places with the home that the server will read it from somewhere. Any hint could be helpful and appreciated! Thank you and I wish you good health!

Advertisement

Answer

The problem was in the WebConfig.class. I need to change the inherited entity. From class WebConfig extends WebMvcConfigurationSupport to public class WebConfig implements WebMvcConfigurer.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement