首页 > 代码库 > springmvc中进入web-inf目录下后重定向到webroot下

springmvc中进入web-inf目录下后重定向到webroot下

   因为在spring-nvc.xml文件中配置了前后缀

   <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="http://www.mamicode.com/WEB-INF/"/>
        <property name="suffix" value="http://www.mamicode.com/.jsp" />
    </bean>

想退出登录返回webroot目录下,可以重定向

    return "redirect:/index.jsp";

就可以进入webroot目录下了

本文出自 “matengbing” 博客,请务必保留此出处http://matengbing.blog.51cto.com/11395502/1914097

springmvc中进入web-inf目录下后重定向到webroot下