在引入CSS样式的link下面加上 href="${pageContext.request.contextPath} ,并且CSS路径要用根路径下的绝对路径。
或者:
<% String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
//href="<%= basePath %>后面要用绝对路径
<link href="<%= basePath %>resources/css/all.css" rel="stylesheet"