JSP页面无法正常翻译问题 ---jsp cannot be resolved to a type

一直提示jsp cannot be resolved to a type

因为是老项目,用的都是原生的js,有许多封装好的公共方法和组件,刚开始不知道需要噖日哪些,就看别人的代码复制粘贴,结果一直编译不了,然后就把自己觉得没有用的引入删除之后,就能正常运行了,所以本次主要原因是引入文件的问题,仅供参考

<%@page import="com.sinosoft.lis.db.employee_testDB"%>
<%@include file="../common/jsp/UsrCheck.jsp"%>
<%@page contentType="text/html;charset=GBK"%>

<%@page import="com.sinosoft.lis.employeeinfo.EmployeeInfoBL"%>
<%@page import="com.sinosoft.lis.schema.employee_testSchema"%>
<%@page import="com.sinosoft.utility.*"%>
<%@page import="com.sinosoft.lis.userMan.*"%>

<%
	String FlagStr = "false";
	String action = request.getParameter("Action");
	System.out.println(action);
	String Result = "";
	CErrors tError = null;
	


猜你喜欢

转载自blog.csdn.net/z1040141848/article/details/78051262