HttpServletResponse response = ServletActionContext.getResponse();
在引入了struts2框架后为什么这一段代码ServletActionContext.getResponse(); 报错
报错信息为Cannot make a static reference to the non-static method getResponse() from the type ServletActionContext
求指导答
在引入了struts2框架后为什么这一段代码ServletActionContext.getResponse(); 报错
报错信息为Cannot make a static reference to the non-static method getResponse() from the type ServletActionContext
求指导答
解决方案
10
说明当前你的这个类里引用的ServletActionContext ,不是org.apache.struts2.ServletActionContext,你看看你的类的imports
30
先获得一个ServletActionContext实例 ,然后再用实例的方法访问
非静态方法,需要用具体对象(实例)调用此方法
非静态方法,需要用具体对象(实例)调用此方法