当前位置: 代码迷 >> J2EE >> ServletActionContext 跟 getServletContext 报错
  详细解决方案

ServletActionContext 跟 getServletContext 报错

热度:958   发布时间:2016-04-21 22:35:44.0
ServletActionContext 和 getServletContext 报错
开始建了一个tomcat 启动的工程,
代码不报错。

后来我建立了一个dynamic web project 同样的代码。
在*。java中的下面的代码报错
 public class DivLoginAction extends ActionSupport{

不想关的代码略掉了。
......................
......................
ServletActionContext.getRequest().getSession(true).setAttribute("username", username);
ServletActionContext.getRequest().setAttribute("status","success");
................
......................
}


在jsp文件中的代码
new File(getServletContext().getRealPath("")也报错


ServletActionContext  和getServletContext这个要是用需要什么条件吗?
需要怎样修改才可以?

------解决方案--------------------
要struts 的包支持
------解决方案--------------------
import org.apache.struts2.ServletActionContext;
  相关解决方案