Spring Security教程外篇(2)---- 乱起八糟的一下东西,自己备用

intercept-url中access配置

IS_AUTHENTICATED_ANONYMOUSLY 允许匿名用户进入

IS_AUTHENTICATED_FULLY 允许登录用户进入

IS_AUTHENTICATED_REMEMBERED 允许登录用户和rememberMe用户进入

支持表达式

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. <sec:http auto-config="true" access-decision-manager-ref="accessDecisionManager"  
  2.         use-expressions="true">  

表达式在access中要写成hasRole(xxx),如果access中任然写ROLE_USER这中形式的话会报下面的错误

Unsupported configuration attributes: [AUTH_GG_FBGBGG, AUTH_GG_FBGBGG]


目前Spring已经不提供下载地址都是Maven地址,但从Spring的Maven仓库中还可以下载到

仓库地址 http://maven.springframework.org/

Spring下载:http://maven.springframework.org/release/org/springframework/spring/

SpringData:http://maven.springframework.org/release/org/springframework/data/

SpringSecurity:http://maven.springframework.org/release/org/springframework/security/


如何获取到Session中的UserDeatils;

在页面中可以使用

[html]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. <p>用户名:<sec:authentication property="name"/> </p>  
  2. <p>用户名:<sec:authentication property="principal.username"/> </p>  
  3. <p>用户姓名:<sec:authentication property="principal.name"/> </p>  
  4. <p>用户名:${SPRING_SECURITY_CONTEXT.authentication.principal.username}</p>  
  5. <p>用户姓名:${SPRING_SECURITY_CONTEXT.authentication.principal.name} </p>  
principal为UserDeatils,在el表达式中不能直接通过name字段来获取用户名即

${SPRING_SECURITY_CONTEXT.authentication.name}是错误的

在后台程序中可以通过SecurityContextHolder来获取

[java]  view plain copy 在CODE上查看代码片 派生到我的代码片
  1. UserDetails user = (UserDetails)SecurityContextHolder.getContext().getAuthentication().getPrincipal();  

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值