jsp中引入js、css时出现net::ERR_ABORTED 404 (Not Found)错误

GET http://localhost:8080/static/My/Sub.js net::ERR_ABORTED 404 (Not Found)

出现此问题主要是引入的js、css不起作用。
路径引入

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>





Insert title here


不起作用

(1)改为:

<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>

<%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>



Insert title here


问题解决
(2)还有就是strut2拦截了静态资源的加载,修改struts2的struts.xml文件,添加:



        
	    
				
					
	
	

你可能感兴趣的:(jsp)