0

我在 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">

在我的 web 应用程序中,我不包括 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" >
4

0 回答 0