热门IT资讯网

ServetContext获取方法

发表于:2024-11-25 作者:热门IT资讯网编辑
编辑最后更新 2024年11月25日,一、ServetContext获取方法在filter 中获取 (过滤器)LoginFilter Filter { init(FilterConfig filterConfig) ServletE

一、ServetContext获取方法

  1. 在filter 中获取 (过滤器)


LoginFilter Filter {    init(FilterConfig filterConfig) ServletException {        filterConfig.getServletContext()    }    doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) IOException, ServletException {        filterChain.doFilter(servletRequest,servletResponse);    }    destroy() {    }}



  1. 在servlet中获取

    this.getServetContext()

  2. 通过ServletRequest获取

    request.getSession().getServletContext()



二.ContextPath 、ServletContextName设置


ContextPath 是指我们在Idea在部署项目时制定的指定


ServletContextName在web.xml中设置

      haiven-crm


0