servlet得到web应用路径
Posted tzzt01
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet得到web应用路径相关的知识,希望对你有一定的参考价值。
package context;
import java.io.IOException;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* 得到web应用路径
* @author Administrator
*
*/
public class ContextDemo1 extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
//1.得到ServletContext对象
// ServletContext context = this.getServletConfig().getServletContext();
ServletContext context = this.getServletContext(); // 推荐使用
//2.得到web应用路径 /day10
/*
* web应用路径:
* 部署到tomcat服务器上运行的web应用名称
*/
String contextPath = context.getContextPath();
System.out.println(contextPath);
/*
* 案例:应用到请求重定向
*/
response.sendRedirect(contextPath + "/index.jsp");
}
}
以上是关于servlet得到web应用路径的主要内容,如果未能解决你的问题,请参考以下文章
servlet,filter,listener,intercepter区别