English 中文(简体)
A. 如果是共同财产基金,则请求获得的次级案文资源
原标题:Requested resource not found for sub-context in case of JSF

我的《共同财产法》应用在目录和服务器下进行。

   <Host name="myapp.com" appBase="/home/myapp/public_html">
      <Alias>www.myapp.com</Alias>
      <Context path="" reloadable="true" docBase="/home/myapp/public_html" debug="1"/>
      <Context path="/manager" debug="0" privileged="true" docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
      </Context>
   </Host>

这些环境 我可以上网查阅所有网页。 我在网上有一页,在我试图查阅与以下的URL:www.myapp.com/app/test_page.jsf有关的一些网页时,我有两页的黑页。

我需要在Tomcat`s服务器.xml做些什么来做这项工作。

是否需要在服务器上添加如下文所述的内容:

<Context path="/myapp/app" reloadable="true" docBase="/home/myapp/public_html/app" debug="1"/>
问题回答

假设<代码>/web ,则在<代码>/public_html上填入。 倍数,您需要将<代码>/web的倍数列入appBaseBase,或列入URL。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签