-
概念理解查看全部
-
注解的解析是由ApplicationContext中的CommonAnnotationBeanPostProcessor发现并处理的查看全部
-
@Scope(value="prototype", proxyMode = ScopedProxyMode.TARGET_CLASS) 可以像在xml中配置bean一样,配置bean的作用范围。查看全部
-
1.for pointcut : @annotation args 2.@DeclareParents 参数级别 3.查看全部
-
通知 1.@Before("表示式、连接点方法名()") 2.@AfterReturing 可以使用returing绑定返回值 Object 3.@AfterThrowing throwing同上 4.@After finally 5.@Around 第一个参数必须是ProceedingJoinPoint proceed(),proceed(Object[])查看全部
-
@AspectJ aspectjweaver,jar 1.6.8+ 1.@EnableAspectJAutoProxy / <aop:aspectj-autoproxy /> 2.@AspectJ 类级别 切面 不会被类路径自动检测 需要bean声明 3.@Pointcut("") 方法级别 返回值为void AspectJ是编译器AOP,检查代码匹配连接点切入点的代价是昂贵的 execution within this target args查看全部
-
1.通过abstract属性以及parent属性可以完成模版化配置(XML事务配置) 2.lazy-init 延迟加载 使用时初始化 3.auto-proxy查看全部
-
如果用uerName,会取到操作系统的登陆用户名!!!!,所以都用jdbc.username这种查看全部
-
<context:property-placeholder location="classpath:/config.properties"/> 加载资源文件的作用,然后在当前文件中就可以引用使用${}了查看全部
-
不指定名称时,使用方法名作为bean的id查看全部
-
类似于<bean/>查看全部
-
@Qualifier和@Resource的区别查看全部
-
@Resource注解查看全部
-
Qualifier可以通过配置xml,使用别名。 Qualifier的意思的限定语,非常贴切。查看全部
-
可用于成员变量,也可用于方法参数查看全部
举报
0/150
提交
取消