设置 Tomcat来自部署的 Eclipse Web 应用程序的参数
我有一个 Eclipse Java Web 应用程序,正在从 Eclipse 3.7 中部署到 Tomcat 7。在我的 Eclipse 服务器配置中,位于 Servers > Tomcatv7-配置> server.xml
,我在部署应用程序时看到添加了以下行:
<Context docBase="myapp" path="/myapp" reloadable="true" source="org.eclipse.jst.j2ee.server:myapp"/>
我的问题是:有什么方法可以向此
元素添加参数对于一个特定的项目?
我需要做的是添加 useHttpOnly=”false”
以便 DWR 在 Tomcat 7 中正常工作。我了解这样做的安全风险,所以请不要讲课:)
I have an Eclipse Java web application that I am deploying to Tomcat 7 from within Eclipse 3.7. In my Eclipse server configuration at Servers > Tomcatv7-config > server.xml
, I see the following line is added when I deploy my application:
<Context docBase="myapp" path="/myapp" reloadable="true" source="org.eclipse.jst.j2ee.server:myapp"/>
My question is this: is there any way for me to add a parameter to this <Context>
element for a specific project?
What I need to do is add useHttpOnly=”false”
in order for DWR to work properly in Tomcat 7. I understand the security risks with this, so please no lecture :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够在 WAR/Project 中的 /META-INF/ 中指定 context.xml,它将胜过 server.xml 行:
You should be able to specify a context.xml in /META-INF/ within your WAR/Project which will trump the server.xml line: