用户无法解析为某种类型

时间:2015-02-20 17:17:51

标签: java

我在jsp代码中编写了一行代码

User u = (User)request.getSession().getAttribute("user");

我收到此错误:

Multiple annotations found at this line:
    - User cannot be resolved to a type

为什么会这样?我该怎么看?

2 个答案:

答案 0 :(得分:1)

现在不推荐在JSP中使用 scriptlet <% %>。使用EL作为

<p>Welcome, ${user.name}</p>

查看代码页以获取更多信息。

答案 1 :(得分:1)

尝试在jsp中添加以下行:

<%@ page import="....User" %>