Put your css/js files in folder src/main/webapp/resources
. Don't put them in WEB-INF
or src/main/resources
.
Then add this line to spring-dispatcher-servlet.xml
<mvc:resources mapping="/resources/**" location="/resources/" />
Include css/js files in jsp pages
<link href="<c:url value="/resources/style.css" />" rel="stylesheet">
Don't forget to declare taglib in your jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>