Where do CSS and JavaScript files go in a Maven web app project?
So if you have your DispatcherServlet configured in a REST like URL pattern such as / then css files would go under src/main/webapp/resources Just to clarify this is what I had to do: Make sure that in your servlet-context.xml you have as follows: <resources mapping=”/resources/**” location=”/resources/” /> Create a folder if does not already exist … Read more