我在Tomcat注销中遇到这些错误(在Netbeans中)。虽然Web应用程序在浏览器中运行良好。
An error occurred at line: 7 in the jsp file: /WEB-INF/jsp/header.jsp
LoginModel cannot be resolved to a type
4: <!--header start here -->
5: <%
6: LoginModel loginModel;
7: loginModel = (LoginModel) request.getSession(false).getAttribute("loginModel");
8: %>
9: <div>
10: <div class="alignright lgouter">
在我的webapplication中,我不知道包括header.jsp但是如何跟踪调用header.jsp的原因以及在哪里?
课程位于:com.mycomp.mct.domain.LoginModel
但错误是Only a type can be imported. com.mycomp.domain.LoginModel resolves to a package
为什么在包中没有.mct.
进行搜索?
这是我如何包括
<%@page import="com.mycomp.mct.domain.LoginModel"%>
<div class="header" >