用struts框架在action.java中出现错误:The type LoginAction must implement the inherited abstract method SessionAware.setSession(Map)和Name clash: The method setSession(Map<String,Object>) of type LoginAction has the same erasure as setSession(Map) of type SessionAware but does not override it
1 回答
芜湖不芜
TA贡献1796条经验 获得超7个赞
SessionAware这个是在struts2中action需要取Session用到的接口。如果你的LoginAction实现这个接口,就需要重写这个接口的方法
在LoginAction加入
//请求访问 session
private Map<String, Object> session;
@Override
public void setSession(Map<String, Object> session) {
this.session = session;
}
添加回答
举报
0/150
提交
取消