首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

weblogic war 途径 getServletContext().getRealPath() 和request.getRealPath

2012-10-08 
weblogic war 路径 getServletContext().getRealPath() 和request.getRealPathweblogic获取路径总是为NULL

weblogic war 路径 getServletContext().getRealPath() 和request.getRealPath
weblogic获取路径总是为NULL

通常情况下载tomcat中
我们以前使用 HttpServletRequest request; request.getRealPath(arg0);
但是这是个过时的方法

request.getSession().getServletContext().getRealPath() 得到站点的绝对地址

HttpServletRequest request;
request.getSession().getServletContext().getRealPath(arg0);

在strut中通过
this.getServlet().getServletContext().getRealPath(arg0);
ServletActionContext.getServletContext().getRealPath(agr0)

在Servlet中通过 extends HttpServlet
this.getServletContext().getRealPath(arg0);

如果 weblogic里面war项目获取路径为空
对一个打包的应用来说,是没有RealPath的概念的,调用getRealPath只会简单地返回null
那么可以推荐尝试
String path=this.getClass().getClassLoader().getResource("/").getPath();
上面这个是获取了web-inf/classes里面的路径,

也可以使用ServletContext.getResourceAsStream("/WEB-INF/config/db.config")方法。

热点排行