plesk + tomcat + mod_jk + jsp は 404 を返します

plesk + tomcat + mod_jk + jsp は 404 を返します

myhello-world.warをplesk tomcat5にインストールしようとしています。「java webappのインストール」を実行していますが、http://domain.com/mytomcat-helloworld/pages/myhelloworld.js私が得ているのは:

404

/mytomcat-helloworld/pages/myhelloworld_jstl.jsp

java.io.FileNotFoundException: /mytomcat-helloworld/pages/myhelloworld_jstl.jsp
    at jrun.jsp.JSPEngine.getPageState(JSPEngine.java:330)
    at jrun.jsp.Translator.translate(Translator.java:67)
    at jrun.jsp.JSPEngine.translateJSP(JSPEngine.java:708)
    at jrun.jsp.JSPServlet.translate(JSPServlet.java:125)
    at jrun.jsp.JSPServlet.service(JSPServlet.java:113)
    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at jrun.servlet.JRunRequestDispatcher.invokeNext(JRunRequestDispatcher.java:586)
    at jrun.servlet.JRunRequestDispatcher.forwardInvoke(JRunRequestDispatcher.java:555)
    at jrun.servlet.JRunNamedDispatcher.forward(JRunNamedDispatcher.java:64)
    at coldfusion.license.JspLicenseServlet.service(Unknown Source)
    at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
    at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106)
    at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42)
    at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286)
    at jrun.servlet.ServletEngineService.dispatch(ServletEngineService.java:543)
    at jrun.servlet.jrpp.JRunProxyService.invokeRunnable(JRunProxyService.java:203)
    at jrunx.scheduler.ThreadPool$DownstreamMetrics.invokeRunnable(ThreadPool.java:320)
    at jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.ThreadPool$UpstreamMetrics.invokeRunnable(ThreadPool.java:266)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)

もし私が使うならhttp://domain.com:9080/mytomcat-helloworld/pages/myhelloworld_jstl.jsp すべて期待どおりに動作します。これを修正する方法はありますか?

plesk バージョン 10.4.4 tomcat バージョン tomcat5-5.5.23-0jpp.22.el5_7

デプロイしようとした war ファイルは次の場所にあります:参考: http://www.michael-thomas.com/tech/apache/tomcat/tutorial_firststeps_tomcat/mytomcat-helloworld-war.zip

答え1

自分で修正したところ、ColdFusion が conf/vhost.conf に配置した jsp ファイルを処理していたことが判明しました。

RemoveHandler .jsp
JRunConfig Ignoresuffixmap true

関連情報