Weblogic服务器中的应用程序路径
在 Struts 操作类中如何获取应用程序路径?
我想从 webcontent\applicationName\Config\myxml.xml 读取 XML 文件,
谢谢。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在 Struts 操作类中如何获取应用程序路径?
我想从 webcontent\applicationName\Config\myxml.xml 读取 XML 文件,
谢谢。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我建议不要将该文件保留在该位置,因为这样就可以使用 http://yourURl/applicationContext/Config/myxml.xml 轻松公开访问它。我认为你应该将其移至
WEB-INF
文件夹下。您应该能够执行如下操作(快速运行代码不会让我坚持下去): -
如果您使用的是 struts2,那么您可以使用 ServletActionContext 以及:-
I would advise against keeping the file in that location because then it can be easily accessed publicly using
http://yourURl/applicationContext/Config/myxml.xml
for example. I think you should move it under theWEB-INF
folder.You should be able to do something like below (quick code on the fly don't hold me to it):-
If you are using struts2 then you can access the ServletContext using ServletActionContext as well:-