Tomcat 无法获取另一个 web 应用程序的 ServletContext
Posted
技术标签:
【中文标题】Tomcat 无法获取另一个 web 应用程序的 ServletContext【英文标题】:Tomcat not able to get ServletContext of another webapp 【发布时间】:2011-01-06 12:20:36 【问题描述】:我使用的是 tomcat 6,我有两个 webapps。一个是 webapp1,另一个是 webapp2。从 webapp2 中的过滤器,我试图访问另一个 webapp,即 webapp1。我的过滤器代码如下所示
public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException
HttpServletRequest req = (HttpServletRequest)request;
System.out.println("requeted path = " + req.getRequestURI());
ServletContext othercontext = confg.getServletContext().getContext("/webapp1");
RequestDispatcher dispatcher = othercontext.getRequestDispatcher(req.getRequestURI());
dispatcher.forward(request, response);
chain.doFilter(request, response);
知道我做错了什么吗?我总是将 null 作为 othercontext 值。
【问题讨论】:
【参考方案1】:在 server.xml 中设置 crossContext = "true"。有关上下文容器,请参见 documentation。
如果您想在其中调用,请设置为 true 这个应用程序 ServletContext.getContext() 到 成功返回请求 其他 Web 应用程序的调度程序 在这个虚拟主机上运行。调成 安全性中的 false(默认值) 有意识的环境,使 getContext() 总是返回 null。
【讨论】:
【参考方案2】:Apache Tomcat 8.0.27 的工作方式略有不同。我没有改变它的server.xml
,而是用Context
标签的crossContext
属性更新了tomcat的context.xml
文件。
【讨论】:
以上是关于Tomcat 无法获取另一个 web 应用程序的 ServletContext的主要内容,如果未能解决你的问题,请参考以下文章
Tomcat 在 web.xml 中包含另一个 xml 文件