- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将从 ServletActionContext
中删除一些属性,但稍后当我迭代 ServletActionContext
时,属性会继续显示。
ServletActionContext.getRequest().removeAttribute("myCategory");
ServletActionContext.getRequest().removeAttribute("title");
for (Enumeration e = ServletActionContext.getRequest().getParameterNames(); e.hasMoreElements();) {
parameterName = (String) e.nextElement();
parameterValue = ServletActionContext.getRequest().getParameter(parameterName);
System.out.println(parameterName +":"+ parameterValue);
}
控制台不断向我显示myCategory:something
和title:otherthing
谁能看出哪里出了问题吗?
最佳答案
您删除的是属性
,但您显示的是参数
。这是两个不同的变量。 检查ServletRequest.getParameterNames()和 ServletRequest.getAttributeNames()
关于java - ServletActionContext.getRequest().removeAttribute() 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10637101/
我将从 ServletActionContext 中删除一些属性,但稍后当我迭代 ServletActionContext 时,属性会继续显示。 ServletActionContext.getReq
我正在使用 servlet 过滤器,尝试获取与当前请求关联的操作。 我的过滤器的相关部分: private ServletContext context; public void init(Filte
要在 Struts 2 中获取 servlet 请求,我们可以使用 ServletRequestAware 或 ServletActionContext。但是,在特定的互联网中 resource ,它
请告诉我 ServletActionContext 和 ServletContext 有什么区别?ServletContext 在所有 servlet 和 Action 之间共享,而 ServletA
我有一个 struts 应用程序,可以在其中获取我正在使用此代码的 servlet 上下文 ServletContext servletContext = ServletActionContext.g
我有以下代码。 HttpServletResponse response = mock(HttpServletResponse.class); System.out.println("
我必须在 Struts2 中的选定操作上使用加载栏,并且正在使用 ServletActionContext,但收到 NullPointerException。 ActionContext.getCon
我是一名优秀的程序员,十分优秀!