ToB企服应用市场:ToB评测及商务社交产业平台
标题:
SpringMVC拦截器使用
[打印本页]
作者:
莱莱
时间:
2023-1-8 20:32
标题:
SpringMVC拦截器使用
SpringMVC拦截器
拦截器是用来干什么的?
在一个登录功能中,如果用户没有登录却尝试通过地址栏直接访问内部服务器资源,这显然是非法的。怎样对这些的非法访问进行拦截? SpringMVC的拦截器可以解决这个问题。
使用拦截器
编写拦截器
创建拦截器类,实现HandlerInterceptor接口按需要实现preHanlder、postHanlder、afterCompeletion方法,这些方法的返回值是boolean型,为true表示不进行拦截,false表示进行拦截,这些方法有默认实现,按需求实现即可
preHanlder方法:在访问资源之前执行
postHanlder方法:在进行响应之前执行
afterCompeletion方法:在进行响应之后执行
public class LoginInterceptor implements HandlerInterceptor {
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
if(request.getSession().getAttribute("name") == null){//用户未登录
request.setAttribute("msg","您还没有登录,请先登录!");
return false;//进行拦截
}else{
return true;//不进行拦截
}
}
}
复制代码
修改配置文件
修改springmvc.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:component-scan base-package="com.tzq"></context:component-scan>
<mvc:annotation-driven></mvc:annotation-driven>
<bean id="viewResolver" >
<property name="prefix" value="/WEB-INF/jsp/"></property>
<property name="suffix" value=".jsp"></property>
</bean>
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<mvc:exclude-mapping path="/showLogin"/>
<mvc:exclude-mapping path="/login"/>
<bean ></bean>
</mvc:interceptor>
</mvc:interceptors>
</beans>
复制代码
在浏览器地址栏中输入http:localhost:8080/main后,由于进行了拦截,出现404错误无法访问
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!
欢迎光临 ToB企服应用市场:ToB评测及商务社交产业平台 (https://dis.qidao123.com/)
Powered by Discuz! X3.4