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
在LoginAction加入
//请求访问 session
private Map<String, Object> session;
@Override
public void setSession(Map<String, Object> session)
this.session = session;
参考技术A 同上 参考技术B 同上
以上是关于java web 编译时出现错误的主要内容,如果未能解决你的问题,请参考以下文章
反编译 MinecraftForge 1.8.9 时出现 Java“peer not authenticated”错误