java web 编译时出现错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 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

SessionAware这个是在struts2中action需要取Session用到的接口。如果你的LoginAction实现这个接口,就需要重写这个接口的方法
在LoginAction加入
//请求访问 session
private Map<String, Object> session;
@Override
public void setSession(Map<String, Object> session)
this.session = session;
参考技术A 同上 参考技术B 同上

以上是关于java web 编译时出现错误的主要内容,如果未能解决你的问题,请参考以下文章

Kali Linux中,make编译时出现错误怎么解决?

反编译 MinecraftForge 1.8.9 时出现 Java“peer not authenticated”错误

尝试导入 web3swift 时出现编译错误

VSCode 编译时出现错误 找不到 preLaunchTask“g++” 怎么办?

jdk编译java文件时出现:编码GBK的不可映射字符

编译 xamarin-android 应用程序时出现 java.exe 错误