Why is a Tomcat webapp failing when an almost identical app starts within the same Tomcat instance?

試著忘記壹切 提交于 2019-12-06 05:29:00

There is a similar behavior to spring applications on tomcat. -- They require that the webAppRootKey is unique for each application. -- If not the applications behave like you described, so in case of Spring apps, make sure that App-A has an other webAppRootKey then App-B.

<context-param>
    <param-name>webAppRootKey</param-name>
    <param-value>myRootKey</param-value>
</context-param>

@See http://groups.google.com/group/riotfamily/browse_thread/thread/9a0edf69575d3ab6?pli=1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!