gpt4 book ai didi

java - 禁用 JSP 扩展处理

转载 作者:行者123 更新时间:2023-11-30 05:17:28 24 4
gpt4 key购买 nike

我有一个在 WebSphere Application Server 6.0 上运行的 JavaEE 1.4 Web 应用程序。在 web.xml 中,有一个 servlet 配置为拦截所有服务器请求:

<servlet-mapping>
<servlet-name>name</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>

这工作正常,直到我尝试请求以 *.jsp 结尾的内容。在这种情况下,服务器尝试查找具有该名称的 JSP,但失败并显示错误:

java.io.FileNotFoundException: JSPG0036E: Failed to find resource /cfvct/search_criteria.jsp    at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.findWrapper(JSPExtensionProcessor.java:279)    at com.ibm.ws.jsp.webcontainerext.JSPExtensionProcessor.handleRequest(JSPExtensionProcessor.java:261)    at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3226)    at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:253)    at com.ibm.ws.webcontainer.VirtualHost.handleRequest(VirtualHost.java:229)    at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:1970)    at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:120)    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:434)    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:373)    at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:253)    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminaters(NewConnectionInitialReadCallback.java:207)    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:109)    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.requestComplete(WorkQueueManager.java:566)    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.attemptIO(WorkQueueManager.java:619)    at com.ibm.ws.tcp.channel.impl.WorkQueueManager.workerRun(WorkQueueManager.java:952)    at com.ibm.ws.tcp.channel.impl.WorkQueueManager$Worker.run(WorkQueueManager.java:1039)    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1475)

我需要让 servlet 处理此请求,但似乎服务器使用一些 JSPExtensionProcessor 来处理以 .jsp 结尾的所有路径。有什么办法可以改变这种行为吗?

最佳答案

是的,您需要将您的 servlet 映射到 *.jsp,以便将 *.jsp 支持重定向到您的 servlet。

<servlet-mapping>
<servlet-name>name</servlet-name>
<url-pattern>*.jsp</url-pattern>
</servlet-mapping>

但是,直接访问 jsp 通常不是一个好主意。将它们放在某个目录的 WEB-INF 中,然后将适当的 url(.do、.action 等)映射到 servlet,然后在内部重定向到该 JSP 是更好的做法。

因此,用户不必输入 thisUrl.jsp,而是输入 thisUrl.do 或 thisUrl.action,然后 servlet 会重定向到 thisUrl.jsp。

关于java - 禁用 JSP 扩展处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/293135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com