开发环境
JDK5,发布环境WAS6.1.0.21
Struts2,Spring2,hibernate3.1
问题描述
1)struts.xml中没有配置default-action-ref
2)web.xml中使用s2的过滤器过滤/*,而不是*.action
3)设置了welcomefile为index.jsp,index.jsp再导向到Index.action。
[09-10-30 15:42:37:982 CST] 00000037 Dispatcher W com.opensymphony.xwork2.util.logging.commons.CommonsLogger warn Could not find action or result
There is no Action mapped for namespace / and action name . - [unknown location]
发布到WAS下总是提示不能导向的首页的Index.action,应该
http://server:port/appContext
http://server:port/appContext/
这两个urlpatten优先映射给s2的过滤器了。
首先想到的解决办法是将web.xml中的welcome-file设置为Index.action,经测试这种方法是行不通的,welcome-file必须是一个实在的文件而不是一种映射,这点可能跟具体的容器实现策略相关的,在Tomcat或者WL下可能是生效的,但在WAS下是行不通的。经过研究和测试我最终找到了解决方案是自行开发一个过滤器名为WelcomeFileFilter,此过滤器优先于s2的过滤器,拦截请求的URI,分析请求的URI是否相对于appContex是根目录,是的话,则应答为导向到一个具体的首页如Index.action。否则的话继续下一个过滤器。Filter的先后顺序是从web.xml的从上到下开始执行的。固将此过滤器声明于s2的过滤器之上并将其影响范围设置为/*,即可正常的在WAS下敲入首页时导向到Index.action了。WAS对web.xml的书写规范是比较苛刻的。
附WelcomeFileFilter.java
import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang.StringUtils;
public class WelcomeFileFilter implements Filter {
public void destroy() {
indexFile = null;
}
private String indexFile;
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
HttpServletRequest httpServletRequest = (HttpServletRequest) request;
HttpServletResponse httpServletResponse = (HttpServletResponse) response;
//String servletPath = httpServletRequest.getServletPath();
String contextPath = httpServletRequest.getContextPath();
String requestURI = httpServletRequest.getRequestURI();
//System.out.println(requestURI);
if (contextPath.equalsIgnoreCase(requestURI) || (contextPath+"/").equalsIgnoreCase(requestURI)) {
String url = "";
if(indexFile.startsWith("/")){
url = contextPath + indexFile;
}else{
url = contextPath +"/" +indexFile;
}
httpServletResponse.sendRedirect(url);
} else {
chain.doFilter(request, response);
}
}
public void init(FilterConfig arg0) throws ServletException {
indexFile = "Home.action";
String x = arg0.getInitParameter("indexFile");
if (StringUtils.isNotBlank(x)) {
indexFile = x;
}
}
}
分享到:
相关推荐
前几天在网上下载一个struts2的helloword的例子,那个作者也真够缺德的,搞个错误的程序,害得我查了一天的程序错误。 最后发现竟然是struts.xml被写成啦sturts.xml。 碰见这样的问题先鄙视下提供例子的作者, 再...
在Web开发中,尤其是使用基于Java的Web框架如Struts时,开发者可能会遇到一个常见的问题:“HTTP Status 404 - There is no Action mapped for namespace and action name BackMemberGroupAudit”。这个问题通常出现...
在网上找了好个struts2的例子结果都不好使报There is no Action mapped for namespace / and action name这个错,没办法自己搞了个好用的,myeclipse 6.0 +tomcat5.5 + jdk 1.5 引入项目后直接发布就可以了!
"错误-There is no Action mapped for namespace and action name"是Struts2中常见的一个错误,表明在当前命名空间下没有找到对应的动作映射。"There is no Action mapped for namespace and action name错误的解决...
错误信息通常为:“There is no Action mapped for namespace / and action name.”,这意味着Struts2在尝试处理请求时找不到对应的Action映射。此外,如果设置了默认的欢迎页面(welcome file),但在启动应用后...
本文将针对其中一种常见的错误提示:“There is no Action mapped for namespace / and action name”进行深入分析,并给出相应的解决方法。 #### 二、问题描述 当在使用 Struts 框架开发 Web 应用时,如果配置...
这有时会导致找不到Action的错误,如"There is no Action mapped for namespace/and action name Login.",需确保在web.xml中正确配置Struts2的FilterDispatcher以加载这些资源。 2. **UI组件与模板引擎**:为了...
HTTPStatus 404 - There is no Action mapped for namespace [/] and action name [user_login] ``` 这通常意味着在`struts.xml`中未为指定的动作名和命名空间配置对应的Action处理类。解决这一问题的关键在于确保...
* There is no Action mapped for namespace [/] and action name [test-update] associated with context path [/Struts2_01]. 这些错误提示通常是由于映射问题引起的。解决这些问题的步骤是: 1. 先排查访问的...