jsp文件在通过tomacat部署后无法显示CSS样式解决办法

在引入CSS样式的link下面加上   href="${pageContext.request.contextPath}    ,并且CSS路径要用根路径下的绝对路径。

或者:


<% String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
 //href="<%= basePath %>后面要用绝对路径

 

你可能感兴趣的:(jsp文件在通过tomacat部署后无法显示CSS样式解决办法)