我在jsp代码中编写了一行代码
User u = (User)request.getSession().getAttribute("user");
我收到此错误:
Multiple annotations found at this line:
- User cannot be resolved to a type
为什么会这样?我该怎么看?
答案 0 :(得分:1)
答案 1 :(得分:1)
尝试在jsp中添加以下行:
<%@ page import="....User" %>