springmvc拦截器

博客展示了Spring拦截器的实现和配置文件内容。拦截器需实现HandlerInterceptor,通过判断请求URL和会话中用户信息决定是否放行。配置文件包含组件扫描、拦截器配置、静态资源过滤、注解驱动和视图解析器等内容。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

拦截器:需要实现HandlerInterceptor

@Override
    public boolean preHandle(HttpServletRequest arg0, HttpServletResponse arg1,
            Object arg2) throws Exception {
        String url=arg0.getRequestURI();
        if(url.indexOf("/login")>0){
            return true;
        }
        
        HttpSession session=arg0.getSession();
        if(session.getAttribute("user")!=null){
            return true;
        }
        arg0.setAttribute("msg", "没有登陆");
        arg0.getRequestDispatcher("/WEB-INF/jsp/login.jsp").forward(arg0, arg1);
        return false;
    }

 

配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
         http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">

       <context:component-scan base-package="com.fu" />

<!-- 拦截器配置-->
       <mvc:interceptors>
           <mvc:interceptor>
               <mvc:mapping path="/**"/>
               <mvc:exclude-mapping path="/**/*.js"/>
               <bean class="com.fu.interceptor.LoginInterceptor"></bean>
           </mvc:interceptor>
       </mvc:interceptors>

<!--过滤静态资源-->
       <mvc:resources location="/js/" mapping="/js/**"></mvc:resources>
       <mvc:annotation-driven />
       <!-- 试图解析器 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/" />
        <property name="suffix" value=".jsp" />
    </bean>
    
    
</beans>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值