在Spring默认的AccessDeniedHandler中只有对页面请求的处理,而没有对Ajax的处理。而在项目开发是Ajax又是我们要常用的技术,所以我们可以通过自定义AccessDeniedHandler来处理Ajax请求。我们在Spring默认的AccessDeniedHandlerImpl上稍作修改就可以了。

  1. public class DefaultAccessDeniedHandler implements AccessDeniedHandler {
  2. /* (non-Javadoc)
  3. * @see org.springframework.security.web.access.AccessDeniedHandler#handle(javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse, org.springframework.security.access.AccessDeniedException)
  4. */
  5. private String errorPage;
  6. //~ Methods ========================================================================================================
  7. public void handle(HttpServletRequest request, HttpServletResponse response, AccessDeniedException accessDeniedException)
  8. throws IOException, ServletException {
  9. boolean isAjax = ControllerTools.isAjaxRequest(request);
  10. if(isAjax){
  11. Message msg = MessageManager.exception(accessDeniedException);
  12. ControllerTools.print(response, msg);
  13. }else if (!response.isCommitted()) {
  14. if (errorPage != null) {
  15. // Put exception into request scope (perhaps of use to a view)
  16. request.setAttribute(WebAttributes.ACCESS_DENIED_403, accessDeniedException);
  17. // Set the 403 status code.
  18. response.setStatus(HttpServletResponse.SC_FORBIDDEN);
  19. // forward to error page.
  20. RequestDispatcher dispatcher = request.getRequestDispatcher(errorPage);
  21. dispatcher.forward(request, response);
  22. } else {
  23. response.sendError(HttpServletResponse.SC_FORBIDDEN, accessDeniedException.getMessage());
  24. }
  25. }
  26. }
  27. /**
  28. * The error page to use. Must begin with a "/" and is interpreted relative to the current context root.
  29. *
  30. * @param errorPage the dispatcher path to display
  31. *
  32. * @throws IllegalArgumentException if the argument doesn't comply with the above limitations
  33. */
  34. public void setErrorPage(String errorPage) {
  35. if ((errorPage != null) && !errorPage.startsWith("/")) {
  36. throw new IllegalArgumentException("errorPage must begin with '/'");
  37. }
  38. this.errorPage = errorPage;
  39. }
  40. }

这里我们直接将异常信息通过PrintWriter输出到前台,然后在前台做统一的处理就可以了。在前台对后台消息统一处理的方法可以参考我的这篇文章http://blog.csdn.net/jaune161/article/details/18135607

最后在配置文件中配置下

  1. <sec:http auto-config="true" access-decision-manager-ref="accessDecisionManager">
  2. <sec:access-denied-handler ref="accessDeniedHandler"/>
  3. <sec:session-management invalid-session-url="/login.jsp" />
  4. <sec:intercept-url pattern="/app.jsp" access="AUTH_LOGIN"/>
  5. <sec:intercept-url pattern="/**" access="AUTH_GG_FBGBGG"/>
  6. <sec:form-login login-page="/login.jsp" authentication-failure-url="/login.jsp"
  7. default-target-url="/index.jsp"/>
  8. </sec:http>
  9. <!-- 自定义权限不足处理程序 -->
  10. <bean id="accessDeniedHandler" class="com.zrhis.system.security.RequestAccessDeniedHandler">
  11. <property name="errorPage" value="/WEB-INF/error/403.jsp"></property>
  12. </bean>

自定义AccessDeniedHandler的更多相关文章

  1. OAuth2.0实战:认证、资源服务异常自定义!

    大家好,我是不才陈某~ 这是<Spring Security 进阶>的第4篇文章,往期文章如下: 实战!Spring Boot Security+JWT前后端分离架构登录认证! 妹子始终没 ...

  2. Spring Security 5.0.x 参考手册 【翻译自官方GIT-2018.06.12】

    源码请移步至:https://github.com/aquariuspj/spring-security/tree/translator/docs/manual/src/docs/asciidoc 版 ...

  3. SpringBoot捕获AccessDeniedException

    https://www.jianshu.com/p/bb14cca5ab3d 自定义AccessDeniedHandler /** * @Author: jialing xu * @Descripti ...

  4. 【JavaEE】SSH+Spring Security自定义Security的部分处理策略

    本文建立在 SSH与Spring Security整合 一文的基础上,从这篇文章的example上做修改,或者从 配置了AOP 的example上做修改皆可.这里主要补充我在实际使用Spring Se ...

  5. Spring Security 入门(1-6-2)Spring Security - 内置的filter顺序、自定义filter、http元素和对应的filterChain

    Spring Security 的底层是通过一系列的 Filter 来管理的,每个 Filter 都有其自身的功能,而且各个 Filter 在功能上还有关联关系,所以它们的顺序也是非常重要的. 1.S ...

  6. Spring Security Oauth2 自定义 OAuth2 Exception

    付出就要得到回报,这种想法是错的. 前言 在使用Spring Security Oauth2登录和鉴权失败时,默认返回的异常信息如下 { "error": "unauth ...

  7. springboot+security整合(2)自定义校验

    说明 springboot 版本 2.0.3源码地址:点击跳转 系列 springboot+security 整合(1) springboot+security 整合(2) springboot+se ...

  8. springboot2.0整合springsecurity前后端分离进行自定义权限控制

    在阅读本文之前可以先看看springsecurity的基本执行流程,下面我展示一些核心配置文件,后面给出完整的整合代码到git上面,有兴趣的小伙伴可以下载进行研究 使用maven工程构建项目,首先需要 ...

  9. Spring Security学习笔记-自定义Spring Security过滤链

    Spring Security使用一系列过滤器处理用户请求,下面是spring-security.xml配置文件. <?xml version="1.0" encoding= ...

随机推荐

  1. CodeForces 703B Mishka and trip

    简单题. 先把环上的贡献都计算好.然后再计算每一个$capital$ $city$额外做出的贡献值. 假设$A$城市为$capital$ $city$,那么$A$城市做出的额外贡献:$A$城市左边城市 ...

  2. z-index研究

    文章来源: http://www.neoease.com/css-z-index-property-and-layering-tree/ 总结: 1.z-index只有在设置position:rela ...

  3. tomcat Server.xml Context配置问题

    有时候需要在tomcat里面做特殊的配置,来进行访问: 例如你的程序 名字是hello端口是80  这时候你要访问你的程序 就要用 localhost/hello 来访问了. 但是怎么直接用 loca ...

  4. 【解题报告】Math

    = =本来昨天就该发的,只是断网……. MATH  [题目描述] 小 x正在做他的数学作业,可是作业实在太难了.题目是这样的: 1.给定一个含有N个数的数列 V. 2.你可以从数列中恰好移除 K个数, ...

  5. JavaEE JavaBean 反射、内省、BeanUtils

    JavaEE JavaBean 反射.内省.BeanUtils @author ixenos JavaBean是什么 一种规范,表达实体和信息的规范,便于封装重用. 1.所有属性为private2.提 ...

  6. Java 集合 fail-fast机制 [ 转载 ]

    Java 集合 fail-fast机制 [转载] @author chenssy 摘要:fail-fast产生原因.解决办法 在JDK的Collection中我们时常会看到类似于这样的话: 例如,Ar ...

  7. MongoDB数据模型(一)

    原文地址 一.数据模型介绍 MongoDB中的数据有着灵活的架构.与SQL数据库不同,因为SQL数据库必须先定义表结构,然后才能向其中插入数据,而MongoDB的集合不强制任何文档结构.这个灵活性方便 ...

  8. 关于CSS样式的那些事_导航条菜单讲解

    最近开始忙着开自己的个人博客了,自己的前端确实是渣渣.没办法,一步步来,从慕课网上慢慢学着先. 首先带来的是一个导航栏的设计: 垂直导航栏的设计: 直接上代码: <!DOCTYPE html P ...

  9. 7、Spring+Struts2+MyBaits(无映射接口实现类)

    1.创建userinfo.sql数据库脚本 create table userinfo (id ), name ), password ), telephone ), isadmin )); --4. ...

  10. Debian上安装java

    Debian 8 Jessie上安装命令: echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main&qu ...