jsp发布后应用根目录
Posted 甜菜波波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jsp发布后应用根目录相关的知识,希望对你有一定的参考价值。
1.发布到tomcat后获取应用的根目录
ServletContext s1=this.getServletContext();
String temp=s1.getRealPath("/");//C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\demo1\
String temp=s1.getRealPath("/WEB-INF/classes/log4j.properties"); //C:\Program Files\Apache Software Foundation\Tomcat 7.0\webapps\demo1\WEB-INF\classes\log4j.properties
以上是关于jsp发布后应用根目录的主要内容,如果未能解决你的问题,请参考以下文章
关于JSP中的response.sendRedirect和RequestDispatcher的区别
7jsp在xml中设置映射后,css失效以及跳转网页404问题
jsp被转成servlet后eclipse把这个servlet放在哪个目录下呢?