Weblogic服务器中的应用程序路径

发布于 2024-11-29 08:29:26 字数 119 浏览 1 评论 0 原文

在 Struts 操作类中如何获取应用程序路径?

我想从 webcontent\applicationName\Config\myxml.xml 读取 XML 文件,

谢谢。

In Struts action class how do I get the application path?

I want to read an XML file from webcontent\applicationName\Config\myxml.xml

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猥︴琐丶欲为 2024-12-06 08:29:27

我建议不要将该文件保留在该位置,因为这样就可以使用 http://yourURl/applicationContext/Config/myxml.xml 轻松公开访问它。我认为你应该将其移至 WEB-INF 文件夹下。

您应该能够执行如下操作(快速运行代码不会让我坚持下去): -

public ActionForward foo(HttpServletRequest request, HttpServletResponse response){
    ServletContext context = request.getSession().getServletConext();
    InputStream stream = context.getResourceAsStream("Config/myxml.xml");
    if(stream!=null){
         //load your XML file from the stream
    }
}

如果您使用的是 struts2,那么您可以使用 ServletActionContext 以及:-

ServletContext context = ServletActionContext.getServletContext();

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 the WEB-INF folder.

You should be able to do something like below (quick code on the fly don't hold me to it):-

public ActionForward foo(HttpServletRequest request, HttpServletResponse response){
    ServletContext context = request.getSession().getServletConext();
    InputStream stream = context.getResourceAsStream("Config/myxml.xml");
    if(stream!=null){
         //load your XML file from the stream
    }
}

If you are using struts2 then you can access the ServletContext using ServletActionContext as well:-

ServletContext context = ServletActionContext.getServletContext();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文