Jive有很好的权限模式,通过代理类实现,那么Spring3有没有类似好的方法

如题。

Jive有很好的权限模式,通过Proxy类实现,非常的清晰好用,就是要写太多的Proxy。

现在Java企业编程基本都用Spring3了,那么Spring3中有没有什么方法可以完成Jive的权限模式?

因此,我也在stackoverflow里问了。见:http://stackoverflow.com/questions/20042991/what-is-the-best-practice-for-spring-the-service-layer-authorization-permissio
[该贴被sinaID45194于2013-11-19 10:51修改过]

2013-11-19 10:49 "@sinaID45194"的内容
那么Spring3中有没有什么方法可以完成Jive的权限模式 ...

使用AOP啊,使用动态Proxy,由JDK帮助你自动产生那么多Proxy,因此,AOP是在Proxy上的升级版:
http://www.jdon.com/aop.html

动态代理与AOP:
http://www.jdon.com/AOPdesign/proxyaop.html
[该贴被banq于2013-11-19 13:25修改过]

shiro,springsecurity之类的不行吗?