我有一个Spring项目:
资源文件位于:src/main/resources/style/
.........许多子文件夹
servlet.xml中:
<mvc:annotation-driven/>
<mvc:resources mapping="/resources/**" location="/resources/" />
和我的jsp:
<link rel="stylesheet" href="<%=request.getContextPath()%>/resources/style/jquery_ui/css/custom-theme/jquery-ui-1.8.23.custom.css"/>
当我浏览我的视图时,将此链接指定为位置:
http://localhost:8080/webapp/WEB-INF/classes/style/jquery_ui/css/custom-theme/jquery-ui-1.8.23.custom.css
如何让它正确显示css文件?