web项目使用配置web.xml实现重定向

1.实现方式

  使用servlet和servlet-mapping实现重定向

  
  <servlet>
    <servlet-name>vipLoginPathservlet-name>
    <jsp-file>/vip/vipLogin.htmljsp-file>  
  servlet>
  <servlet-mapping>
    <servlet-name>vipLoginPathservlet-name>
    <url-pattern>/vipurl-pattern>
  servlet-mapping> 

 

参考资料:

  https://docs.oracle.com/cd/E13222_01/wls/docs81/webapp/web_xml.html#1039287

转载于:https://www.cnblogs.com/springlight/p/6382593.html

你可能感兴趣的:(web项目使用配置web.xml实现重定向)