摘要: 我们一般在含有Spring的项目中,可能会看到配置项中包含这个配置节点<context:annotation-config>,这是一条向Spring容器中注册 AutowiredAnnotationBeanPostProcessor CommonAnnotationBeanPostProcessor 阅读全文
posted @ 2019-04-10 20:30 Zuul 阅读(4380) 评论(0) 推荐(2) 编辑
摘要: Bean的作用域(scope) Spring 3定义了五种作用域,分别为singleton(单例)、prototype(原型)、request、session、global session,五种作用域如下: 1.singleton:单列模式,Spring Ioc容器中只会存在一个共享的bean实例, 阅读全文
posted @ 2019-04-10 15:10 Zuul 阅读(514) 评论(0) 推荐(0) 编辑