spring security xml配置详解

security 3.x

<?xml version="1.0" encoding="UTF-8"?>  
<beans:beans xmlns="http://www.springframework.org/schema/security"  xmlns:beans="http://www.springframework.org/schema/beans"   
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
xsi:schemaLocation="http://www.springframework.org/schema/beans   
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd    
http://www.springframework.org/schema/security   
http://www.springframework.org/schema/security/spring-security-3.1.xsd">  <global-method-security pre-post-annotations="enabled">  </global-method-security>  <!-- 该路径下的资源不用过滤 -->  <http pattern="/include/js/**" security="none" />  <http pattern="/include/css/**" security="none" />  <http pattern="/include/scripts/**" security="none" />  <http pattern="/include/jsp/**" security="none" />  <http pattern="/images/**" security="none" />  <http pattern="/login.jsp" security="none" />  <!--auto-config = true 则使用from-login. 如果不使用该属性 则默认为http-basic(没有session).-->  <!-- lowercase-comparisons:表示URL比较前先转为小写。-->  <!-- path-type:表示使用Apache Ant的匹配模式。-->  <!--access-denied-page:访问拒绝时转向的页面。-->  <!-- access-decision-manager-ref:指定了自定义的访问策略管理器。-->  <http use-expressions="true" auto-config="true"  access-denied-page="/include/jsp/timeout.jsp">  
<!--login-page:指定登录页面。  -->  
<!-- login-processing-url:指定了客户在登录页面中按下 Sign In 按钮时要访问的 URL。-->  <!-- authentication-failure-url:指定了身份验证失败时跳转到的页面。-->  <!-- default-target-url:指定了成功进行身份验证和授权后默认呈现给用户的页面。-->  
<!-- always-use-default-target:指定了是否在身份验证通过后总是跳转到default-target-url属性指定的URL。 
-->  <form-login login-page="/login.jsp" default-target-url='/system/default.jsp'  always-use-default-target="true" authentication-failure-url="/login.jsp?login_error=1" />  
<!--logout-url:指定了用于响应退出系统请求的URL。其默认值为:/j_spring_security_logout。-->  <!-- logout-success-url:退出系统后转向的URL。-->  <!-- invalidate-session:指定在退出系统时是否要销毁Session。-->  <logout invalidate-session="true" logout-success-url="/login.jsp"  logout-url="/j_spring_security_logout" />  <!-- 实现免登陆验证 -->  <remember-me />  <!-- max-sessions:允许用户帐号登录的次数。范例限制用户只能登录一次。-->  
<!-- 此值表示:用户第二次登录时,前一次的登录信息都被清空。-->  <!--   exception-if-maximum-exceeded:默认为false,-->  
<!-- 当exception-if-maximum-exceeded="true"时系统会拒绝第二次登录。-->  <session-management invalid-session-url="/login.jsp"  session-fixation-protection="none">  <concurrency-control max-sessions="1"  error-if-maximum-exceeded="false" />  </session-management>  <custom-filter ref="myFilter" before="FILTER_SECURITY_INTERCEPTOR" />  <session-management  session-authentication-strategy-ref="sas" />  </http>  
<beans:bean id="sas"  
class="org.springframework.security.web.authentication.session.ConcurrentSessionControlStrategy">  <beans:constructor-arg name="sessionRegistry"  ref="sessionRegistry" />  <beans:property name="maximumSessions" value="1" />  <!-- 防止session攻击 -->  <beans:property name="alwaysCreateSession" value="true" />  <beans:property name="migrateSessionAttributes" value="false" />  <!--  同一个帐号 同时只能一个人登录 -->  <beans:property name="exceptionIfMaximumExceeded"  value="false" />  </beans:bean>  <beans:bean id="sessionRegistry"  class="org.springframework.security.core.session.SessionRegistryImpl" />  <!-- 
事件监听:实现了ApplicationListener监听接口,包括AuthenticationCredentialsNotFoundEvent 事件,-->  <!-- AuthorizationFailureEvent事件,AuthorizedEvent事件, PublicInvocationEvent事件-->  <beans:bean  class="org.springframework.security.authentication.event.LoggerListener" />  <!-- 自定义资源文件   提示信息 -->  <beans:bean id="messageSource"  
class="org.springframework.context.support.ReloadableResourceBundleMessageSource">  <beans:property name="basenames" value="classpath:message_zh_CN">  
</beans:property>  </beans:bean>  <!-- 配置过滤器 -->  <beans:bean id="myFilter"  class="com.taskmanager.web.security.MySecurityFilter">  <!-- 用户拥有的权限 -->  <beans:property name="authenticationManager" ref="myAuthenticationManager" />  <!-- 用户是否拥有所请求资源的权限 -->  <beans:property name="accessDecisionManager" ref="myAccessDecisionManager" />  <!-- 资源与权限对应关系 -->  <beans:property name="securityMetadataSource" ref="mySecurityMetadataSource" />  </beans:bean>  <!-- 实现了UserDetailsService的Bean -->  <authentication-manager alias="myAuthenticationManager">  <authentication-provider user-service-ref="myUserDetailServiceImpl">  <!-- 登入 密码  采用MD5加密 -->  <password-encoder hash="md5" ref="passwordEncoder">  </password-encoder>  </authentication-provider>  </authentication-manager>  <!-- 验证用户请求资源  是否拥有权限 -->  <beans:bean id="myAccessDecisionManager"  class="com.taskmanager.web.security.MyAccessDecisionManager">  </beans:bean>  <!-- 系统运行时加载 系统要拦截的资源   与用户请求时要过滤的资源 -->  <beans:bean id="mySecurityMetadataSource"  class="com.taskmanager.web.security.MySecurityMetadataSource">  <beans:constructor-arg name="powerService" ref="powerService">  
</beans:constructor-arg>  </beans:bean>  <!-- 获取用户登入角色信息 -->  <beans:bean id="myUserDetailServiceImpl"  class="com.taskmanager.web.security.MyUserDetailServiceImpl">  <beans:property name="userService" ref="userService"></beans:property>  </beans:bean>  <!-- 用户的密码加密或解密 -->  <beans:bean id="passwordEncoder"  
class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" />  
</beans:beans>    

 

security 4.x

<beans:beans  xmlns="http://www.springframework.org/schema/security"  xmlns:beans="http://www.springframework.org/schema/beans"  xmlns:p="http://www.springframework.org/schema/p"  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/security  http://www.springframework.org/schema/security/spring-security.xsd">  <context:component-scan base-package="com.framework.security"/>  <!--<http pattern="/pm/**" security="none" />-->  <http pattern="/login.jsp" security="none" />  <http pattern="/common/**" security="none" />  <http pattern="/*.ico" security="none" />  <http  use-expressions="false" >  <!-- IS_AUTHENTICATED_ANONYMOUSLY 匿名登录 -->  <intercept-url pattern="/login" access="IS_AUTHENTICATED_ANONYMOUSLY" />  <intercept-url pattern="/pm/**/*.jsp" access="ROLE_STATIC" />  <form-login login-page="/login"    authentication-failure-url="/login?error=1" authentication-success-forward-url="/main.to" />  <logout invalidate-session="true" logout-url="/logout"  logout-success-url="/"  />  <http-basic/>  <headers >  <frame-options disabled="true"></frame-options>  </headers>  <csrf token-repository-ref="csrfTokenRepository" />  <session-management session-authentication-error-url="/frame.expired" >  <!-- max-sessions只容许一个账号登录,error-if-maximum-exceeded 后面账号登录后踢出前一个账号,expired-url session过期跳转界面 -->  <concurrency-control max-sessions="1" error-if-maximum-exceeded="false" expired-url="/frame.expired" session-registry-ref="sessionRegistry" />  </session-management>  <expression-handler ref="webexpressionHandler" ></expression-handler>  </http>  <beans:bean id="sessionRegistry" class="org.springframework.security.core.session.SessionRegistryImpl" />  <beans:bean id="userDetailsService" class="com.framework.security.UserDetailsServiceImpl" />  <!--配置web端使用权限控制-->  <beans:bean id="webexpressionHandler" class="org.springframework.security.web.access.expression.DefaultWebSecurityExpressionHandler" />  <authentication-manager >  <authentication-provider ref="authenticationProvider" />  </authentication-manager>  <!-- 自定义userDetailsService, 盐值加密 -->  <beans:bean id="authenticationProvider" class="org.springframework.security.authentication.dao.DaoAuthenticationProvider">  <beans:property name="hideUserNotFoundExceptions" value="true" />  <beans:property name="userDetailsService" ref="userDetailsService" />  <beans:property name="passwordEncoder" ref="passwordEncoder" />  <beans:property name="saltSource" ref="saltSource" />  </beans:bean>  <!-- Md5加密 -->  <beans:bean id="passwordEncoder" class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" />  <!-- 盐值加密 salt对应数据库字段-->  <beans:bean id="saltSource" class="org.springframework.security.authentication.dao.ReflectionSaltSource">  <beans:property name="userPropertyToUse" value="salt"/>  </beans:bean>  <beans:bean id="csrfTokenRepository" class="org.springframework.security.web.csrf.HttpSessionCsrfTokenRepository" />  
</beans:beans>  

 

转载于:https://www.cnblogs.com/yyxxn/p/8080141.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/281579.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Redis源码分析】Redis命令处理生命周期

运营研发团队 李乐 前言 本文主要讲解服务器处理客户端命令请求的整个流程&#xff0c;包括服务器启动监听&#xff0c;接收命令请求并解析&#xff0c;执行命令请求&#xff0c;返回命令回复等&#xff0c;这也是本文的主题“命令处理的生命周期”。 Redis服务器作为典型的事件…

博鳌直击 | 区块链在互联网金融中扮演怎样的角色?

雷锋网3月24日报道&#xff0c;今日&#xff08;3月24日&#xff09;&#xff0c;第16届博鳌亚洲论坛2017年年会在海南继续进行中。据雷锋网了解&#xff0c;在今日下午的数字货币与区块链分论坛上&#xff0c;中国银行前行长、中国互联网金融协会区块链工作组组长李礼辉讲述了…

GDB调试qemu-kvm

GDB调试qemu-kvm 前面几篇博文都是记录一些kvm相关包编译安装及使用&#xff0c;但都没深入去代码看看。看源码在配合上相关原理才能更好的理解kvm。但qemu-kvm的代码量很多&#xff0c;对我来讲直接看源码收获甚少&#xff0c;所以找了个调试工具——GDB来配合阅读代码。接下来…

c语言编译错误 原文,C语言常见错误与警告

C语言常见错误与警告C语言常见错误与警告C语言常见错误&#xff1a;1 invalid type argument of ‘->’ (have ‘struct qstr_xid_element’)这种错误一般是没有理解C中“->”与“.”用法的不同&#xff0c;“->”是指向结构体指针获取结构体的成员变量时所用&#xf…

力争营收渠道多样化,Line 向自拍应用 Snow 投资 4500 万美元

今年&#xff0c;在科技公司 IPO 市场不景气的情况下&#xff0c;日本通信应用 Line顺利进行了 IPO &#xff0c;目前正在寻求多样化发展。今天, Line 宣布向自拍应用 Snow 投资 4500 万美元(500 亿韩元)。本次交易之后&#xff0c;Line 将获得 Snow 25% 的股权。 Snow 常被称为…

用.NET设计一个假装黑客的屏幕保护程序

本文主要介绍屏幕保护程序的一些相关知识&#xff0c;以及其在安全方面的用途&#xff0c;同时介绍了如何使用 .NET 开发一款屏幕保护程序&#xff0c;并对核心功能做了介绍&#xff0c;案例代码开源&#xff1a;https://github.com/sangyuxiaowu/HackerScreenSaver背景前几天在…

【IntelliJ】IntelliJ IDEA常用设置及快捷键以及自定义Live templates

IntelliJ IDEA是一款非常优秀的JAVA编辑器&#xff0c;初学都可会对其中的一些做法感到很别扭&#xff0c;刚开始用的时候我也感到很不习惯&#xff0c;在参考了网上一些文章后在这里把我的一些经验写出来&#xff0c;希望初学者能快速适应它&#xff0c;不久你就会感觉到编程是…

复习Javascript专题(一):基本概念部分

一、数据类型 基本类型&#xff1a;Null Boolean String Undefined Number(NB SUN)引用类型&#xff1a;Array Function Object类型判断&#xff1a;typeof 返回结果"undefined"&#xff08;未定义&#xff09; "boolean"(布尔值) "st…

c语言时钟报告,C语言图形时钟课程设计实验报告

C语言图形时钟课程设计实验报告 目录1.系统功能要求。2. 数据结构设计及说明。3.程序结构(画流程图) 。4.各模块的功能。5.试验结果(包括输入数据和输出结果) 。6.体会。7.参考文献。8.附录&#xff1a;程序清单及源程序。 系统功能要求&#xff1a;在屏幕上显示一个图形时钟…

微软发布 2023 财年第一季度财报:营收达 501 亿美元,同比增长 11%

北京时间 2022 年 10 月 26 日——微软发布 2023 财年第一季度财报。财报显示&#xff0c;截止到 2022 年 9 月 30 日&#xff1a;营收达到 501 亿美元&#xff0c;增长 11%&#xff08;按固定汇率计算增长 16%&#xff09;运营收入为 215 亿美元&#xff0c;增长 6%&#xff0…

《图解CSS3:核心技术与案例实战》——1.3节渐进增强

本节书摘来自华章社区《图解CSS3&#xff1a;核心技术与案例实战》一书中的第1章&#xff0c;第1.3节渐进增强&#xff0c;作者 大漠&#xff0c;更多章节内容可以访问云栖社区“华章社区”公众号查看 1.3 渐进增强第一次听到“渐进增强”&#xff08;Progressive Enhancement…

阿里云云主机搭建网站攻略 - 云翼计划

阿里云服务器&#xff08;云主机&#xff09;搭建网站攻略 - 云翼计划 提示&#xff1a;此搭建攻略为2017版本&#xff0c;阿里云未跟新前。 最新搭建攻略请前往 Amaya丶夜雨博客 / 最新个人博客 https://www.amayaliu.cn 支持一下哦&#xff0c;谢谢。&#xff08;9.5一…

用c语言递归函数做扫雷,【C语言基础学习---扫雷游戏】(包含普通版+递归炼狱版)...

/*******************///以下是源文件game.c内容/*******************/#include"game.h"//初始化棋盘的实现void InitBoard(char board[ROWS][COLS], int rows, int cols, char set){int i 0;int j 0;for (i 0; i < rows; i){for (j 0; j < cols; j){board…

记一次 .NET 某医疗器械 程序崩溃分析

一&#xff1a;背景 1.讲故事前段时间有位朋友在微信上找到我&#xff0c;说他的程序偶发性崩溃&#xff0c;让我帮忙看下怎么回事&#xff0c;上面给的压力比较大&#xff0c;对于这种偶发性崩溃&#xff0c;比较好的办法就是利用 AEDebug 在程序崩溃的时候自动抽一管血出来&a…

1251: 字母图形 [水题]

1251: 字母图形 [水题] 时间限制: 1 Sec 内存限制: 128 MB提交: 140 解决: 61 统计题目描述 利用字母可以组成一些美丽的图形&#xff0c;下面给出了一个例子&#xff1a; ABCDEFG BABCDEF CBABCDE DCBABCD EDCBABC 这是一个5行7列的图形&#xff0c;请找出这个图形的规律&…

c语言 三角形三边abc,C语言代码输入abc三个数,求一这3个数为边长的三角形面积...

2011-01-04 回答#include #include #include #include #include int main(){float a 0.0;float b 0.0;float c 0.0;float s 0.0;double area 0.0;while(true){printf("input your date(a,b,c):");scanf("%f%f%f",&a,&b,&c);if(!isdigit((…

shell脚本中向hive动态分区插入数据

在hive上建表与普通分区表创建方法一样&#xff1b; 1 CREATE TABLE dwa_m_user_association_circle(2 device_number string, 3 oppo_number string, 4 prov_id_oppo string, 5 area_id_oppo string, 6 dealer_oppo string, 7 short_call_nums bigint, 8 long3…

WPF效果第二百零二篇之TreeView带连接线

前面文章中分享了TreeView支持多选;然而在项目上使用时,领导觉得不满意:体现不了真正的从属关系;既然领导都发话了;那就开整就行了;今天就再来个带有连接线的TreeView效果:1、来看看TreeViewItem的Template:2、展开和收缩动画:3、参考资料https://www.codeproject.com/tips/673…

ObjectTive C语言语法,[译]理解 Objective-C 运行时(下篇)

本文来自网易云社区作者&#xff1a;宋申易所以到底 objc_msgSend 发生了什么&#xff1f;很多事情。看一下这段代码&#xff1a;[self printMessageWithString:"Hello World!"];这实际上被编译器翻译成&#xff1a;objc_msgSend(self, selector(printMessageWithStr…

菜鸟学习MVC实录:弄清项目各类库的作用和用法

MVC模式即&#xff1a;模型&#xff08;Model&#xff09;-视图&#xff08;View&#xff09;-控制器&#xff08;Controller&#xff09; Model &#xff08;模型&#xff09;&#xff1a;是应用程序中用于处理应用程序数据逻辑的部分。通常模型对象负责数据库中存取数据View…