我在会话中有一个 Employee 类型的对象,称为 User,它包含方法
public String getType() {
return type;
}
我想在使用 JSTL 的 .jsp 页面上使用此值,并且我正在使用代码
${sessionScope.User.getType eq 'Supervisor'}
访问这个。但它不断抛出异常
PropertyNotFoundException: Property 'getType' not found on type model.Employee
我不知道为什么。请帮忙。