为了账号安全,请及时绑定邮箱和手机立即绑定

使用web语言编译时出现错误?该怎么办?求大佬!

使用web语言编译时出现错误?该怎么办?求大佬!

用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;
}

查看完整回答
反对 回复 2021-06-21
  • 1 回答
  • 0 关注
  • 408 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信