码迷,mamicode.com
首页 > 编程语言 > 详细

spring security 构造函数初始化bean思路

时间:2014-07-31 16:10:26      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:文件   io   ar   res   ad   load   ef   spring   

采用有参数的构造方法来解决注入你要的属性例如:
public MyInvocationSecurityMetadataSource(RoleService roleService) {
  this.roleService = roleService;
  loadResourceDefine();
}

RoleService 是可以获得资源列表的组件.
在xml配置文件中采用构造函数注入的方式把RoleService 注入到MyInvocationSecurityMetadataSource中.例如
<beans:bean id="securityMetadataSource"
class="com.shoesishow.security.MyInvocationSecurityMetadataSource">
<beans:constructor-arg><beans:ref bean="roleService"/></beans:constructor-arg>
</beans:bean>

spring security 构造函数初始化bean思路,布布扣,bubuko.com

spring security 构造函数初始化bean思路

标签:文件   io   ar   res   ad   load   ef   spring   

原文地址:http://www.cnblogs.com/simpledev/p/3880646.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!