
注解
文章平均质量分 59
之子于归--
铅笔画的永远是灰色。
展开
-
@Requires...... 几种注解的 解释
@RequiresAuthentication 验证用户是否登录,等同于方法subject.isAuthenticated() 结果为true时。 @RequiresUser 验证用户是否被记忆,user有两种含义: 一种是成功登录的(subject.isAuthenticated() 结果为true); 另外一种是被记忆的(subject.isRemembered(原创 2017-07-07 17:23:49 · 3918 阅读 · 0 评论 -
@Component注解
Spring自带的@Component注解及扩展 @Component:定义Spring管理Bean @AspectJ风格的切面可以通过@Compenent注解标识其为Spring管理Bean,而@Aspect注解不能被Spring自动识别并注册为Bean,必须通过@Component注解来完成 Java代码 @Component原创 2017-10-27 11:15:33 · 6717 阅读 · 0 评论