`
hideto
  • 浏览: 2678236 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Spring JavaConfig参考文档

    博客分类:
  • Java
阅读更多
Spring JavaConfig参考文档
Spring JavaConfig Reference Documentation
Rod Johnson
Costin Leau
version 1.0-m2
Copies of this document may be made for your own use and for distribution to others, provided that you do not
charge any fee for such copies and further provided that each copy contains this Copyright Notice, whether
distributed in print or electronically.
2007.05.08


目录
1. 介绍
2. 组件
  2.1 @Configuration
  2.2 @Bean
  2.3 @ExternalBean
  2.4 @ScopedProxy
3. Bean可见度
4. 装配依赖
5. 命名策略
6. 混合XM和annotations
7. 使用Java Configuration
8. Roadmap


第一章、介绍
IoC中提到,Spring IoC核心为一个称为bean的概念。
这个概念定义了一个对象被Spring容器初始化、装配和管理的方式。
虽然Spring本身可以从任何metadata读取内容并装换成Java代码,但是XML是描述beans配置最流行的方式。
JDK5+中引入的Annotations允许源代码组件提供额外的metadata,这些metadata可以影响运行时语义。
这让annotations成为一个很好的配置选项。
分享到:
评论
18 楼 maqujun 2007-08-05  
正好在研究spring的这部分内容,多谢分享。
17 楼 liuwangxia 2007-08-05  
carrierlanhai 写道
文章写的不错,这个LOGO看得很不舒服

确实不舒服,让我想起“王开源”博客的 LOGO
16 楼 ixu 2007-07-25  
译的不错,辛苦。

JavaConfig也提供了AOP的注解配置方式,不过文档中还没怎么提,不知道以后会不会替代AspectJ的注解方式
15 楼 carrierlanhai 2007-07-23  
文章写的不错,这个LOGO看得很不舒服
14 楼 jvincent 2007-07-21  
期待中,可以省去配置xml文件的麻烦了。主要是xml文件的配置形式不能使用到java的类型检测,容易出错。。
13 楼 xiumu 2007-07-20  
谢谢!
12 楼 westlwt 2007-07-17  
sound interesting
11 楼 hideto 2007-07-17  
JavaConfig和sannotations都以plugins的方式使用,Spring现在还没有集成它们,而JavaConfig是Spring的子项目,Spring要把Annotation配置集成到核心代码的话肯定选择JavaConfig了

你要采用annotation方式配置,就表示接受使用@Configuration
10 楼 hantsy 2007-07-17  
Spring JavaConfig和Spring annotation(http://spring-annotation.dev.java.net)区别在哪儿,Spring 2.1采用的是哪种方式,太乱了,,,
感觉是spring还是要使用Annotation配合xml的方式,xml中写Spring中最基本的bean,Annotation用在自己的Bean上,写一个Configuration太不爽了吧。

还好现在Spring项目还没有用到这些东西
9 楼 hbcui1984 2007-07-16  
不错,学习了
8 楼 laiseeme 2007-07-16  
呵呵 老婆在很烦人么
7 楼 hideto 2007-07-14  
第八章、Roadmap
该project相对来说很年轻,可以认为是beta版(hence, the milestone release)。
后继的开发将关注于自动配置发现和简化。
反馈、八哥和建议在Srping forumSpring issue tracking都是受欢迎的。

译者说:
Spring JavaConfigGoogle Guice的区别主要在于它们两者的IoC理念不同:
JavaConfig说IoC配置是必须无侵入的,所以单独弄了个@Configuration
Guice说IoC配置是应用程序模型的一部分,所以配置都扔在领域模型代码中

最后感谢老婆公司领导命令她今天加班,译者今天才有一天的时间来翻译此文档。
6 楼 hideto 2007-07-14  
七、使用Java Configuration
为了使用annotations来配置我们的程序,我们可以使用:

a, AnnotationApplicationContext
它接收Ant风格模式的类名来搜索annotations:
ApplicationContext config = new AnnotationApplicationContext(SimpleConfiguration.class.getName());
ApplicatonContext aBunchOfConfigs = new AnnotationApplicationContext("**/configuration/*Configuration.class");

这种特有的application context将自动读取classpath下匹配给定模式的类并添加进来作为beans,缺点是这种方式不允许配置实例带参数。

b, Configuration post processor
<beans>
  <!-- Spring configuration -->
  <bean class="org.springframework.samples.petclinic.JdbcConfiguration"/>
  <!-- Java Configuration post processor -->
  <bean class="org.springframework.config.java.process.ConfigurationPostProcessor"/>
</beans>

这种方式允许更多的配置选项,因为它不仅提供对configuration processing(通过ConfigurationPostProcessor)的控制,也提供对配置实例本身。
通过定义configuration为一个bean,Spring容器可以用来配置configuration(设置properties或者使用某个构造方法):
<beans>
<!-- a possible configurable configuration -->
<bean class="org.my.company.cofig.AppConfiguration">
  <property name="env" value="TESTING"/>
  <property name="monitoring" value="true"/>
  <property name="certificates" value="classpath:/META-INF/config/MyCompany.certs"/>
</bean>

<!-- Java Configuration post processor -->
<bean class="org.springframework.config.java.process.ConfigurationPostProcessor"/>
</beans>
5 楼 hideto 2007-07-14  
六、混合XML和annotations
Java和XML配置不是互斥的--它们可以同时在同一Spring程序里使用。为了从一个XML文件得到bean,我们需要使用Spring容器。
前面提到,我们可以使用@ExternalBean标记(推荐方式)。
当这种方式不适用时,可以访问@Configuration类使用的底层beanFactory。
这可以通过继承ConfigurationSupport或实现BeanFactoryAware接口来实现。
考虑下面的XML配置:
<bean id="myBean" class="MyBean"/>

为了引用myBean这个bean,我们可以使用下面的代码片段:
@Configuration
public class MyConfig extends ConfigurationSupport {
  @Bean
  public ExampleBean anotherBean() {
    ExampleBean bean = new ExampleBean("anotherBean");
    bean.setDep(getBean("myBean")); // use utility method to get a hold of 'myBean'
    return bean;
  }
}

@Configuration
public class MyOtherConfig implements BeanFactoryAware {
  private BeanFactory beanFactory;

  public void setBeanFactory(BeanFactory beanFactory) {
    // get access to the owning bean factory
    this.beanFactory = beanFactory;
  }

  @Bean
  public ExampleBean yetAnotherBean() {
    ExampleBean bean = new ExampleBean("yetAnotherBean");
    bean.setDep(beanFactory.getBean("myBean")); // use dependency lookup
    return bean;
  }
}

在使用ConfigurationSupport或BeanFactoryAware之前请三思,因为@ExternalBean以重构更友好的方式提供同样的功能。
JavaConfig发布时包含了一个Petclinic示例,它使用Java和Groovy来替换部分XML配置--请参考示例程序获得更多信息。
4 楼 hideto 2007-07-14  
五、命名策略
到目前为止,上面所有的例子里,bean的名字都来自于方法名:
@Configuration
public class ColorsConfiguration {
  // create a bean with name 'blue'
  @Bean
  public Color blue() {
    ...
  }
  ...
}

// dependency lookup for the blue color
applicationContext.getBean("blue");

在某些情况下,以方法名作为同样的bean名字并不合适,不同的类将覆盖定义。
为了定制该行为,我们可以实现BeanNamingStrategy接口来提供自己的名字生成策略。
但是,在写你自己的代码之前,看看默认实现MethodNameStrategy提供的选项:
<!-- Java Configuration post processor -->
<bean class="org.springframework.config.java.process.ConfigurationPostProcessor">
  <property name="namingStrategy">
    <bean class="org.springframework.config.java.naming.MethodNameStrategy">
      <property name="prefix" value="CLASS"/>
    </bean>
  </property>
</bean>

这样配置后,bean的名字将为bean创建方法加上class名前缀:
// dependency lookup for the blue color using the new naming scheme
applicationContext.getBean("ColorsConfiguration.blue");
3 楼 hideto 2007-07-14  
四、装配依赖
为了装配一个bean,通常需要简单的使用Java提供的constructs:
@Bean(scope = DefaultScopes.SINGLETON)
public Person rod() {
  return new Person("Rod Johnson");
}

@Bean(scope = DefaultScopes.PROTOTYPE)
public Book book() {
  Book book = new Book("Expert one-on-one J2EE Design and Development");
  book.setAuthor(rod()); // rod() method is actually a bean reference !
  return book;
}

上面的例子中,book的author使用rod方法的返回值。
但是,由于book和rod方法都被@Bean标记,结果得到的Spring管理的beans将遵循容器语义: rod bean将是singleton而book bean将是prototype。
当创建配置时,Spring知道annotation context并且将用名为"rod"的bean的引用来代替rod()方法。
每次book bean被请求时容器将返回一个新的Book实例(prototype),但是对rod bean则将返回同一实例(singleton)。
上面的代码等同于:
<bean id="rod" class="Person" scope="singleton">
  <constructor-arg>Rod Johnson</constructor-arg>
</bean>

<bean id="book" class="Book" scope="prototype">
  <constructor-arg>Expert One-on-On J2EE Design and Development</constructor-arg>
  <property name="author" ref="rod" />
</bean>

注意上面的例子使用两个常见的scopes类型,而任何类型的scoping都可以被指定:
@Bean (scope = "customer")
public Bag shopingBag() {
  return new Basket();
}

@Bean (scope = "shift")
public Manager shopManager() {
  ...
}
2 楼 hideto 2007-07-14  
第三章、Bean可见度
JavaConfig的一个很好的特性是bean可见度。
JavaConfig使用方法可见度修饰符来决定从该方法得到的bean是否可以通过owning application context/bean factory来访问。
考虑如下配置:
@Configuration
public abstract class VisibilityConfiguration {
  @Bean
  public Bean publicBean() {
    Bean bean = new Bean();
    bean.setDependency(hiddenBean());
    return bean;
  }

  @Bean
  protected HiddenBean hiddenBean() {
    return new Bean("protected bean");
  }

  @Bean
  private HiddenBean secretBean() {
    Bean bean = new Bean("private bean");
    // hidden beans can access beans defined in the 'owning' context
    bean.setDependency(outsideBean());
  }

  @ExternalBean
  public abstract Bean outsideBean()
}

和如下XML配置一起使用:
<beans>
  <!-- the configuration above -->
  <bean class="my.java.config.VisibilityConfiguration"/>

  <!-- Java Configuration post processor -->
  <bean class="org.springframework.config.java.process.ConfigurationPostProcessor"/>

  <bean id="mainBean" class="my.company.Bean">
    <!-- this will work -->
    <property name="dependency" ref="publicBean"/>
    <!-- this will *not* work -->
    <property name="anotherDependency" ref="hiddenBean"/>
  </bean>
</beans>

JavaConfig遇到如上的配置时,它将创建3个beans: publicBean, hiddenBean和secretBean。
它们是互相可见的,但是在'owning' application context(启动JavaConfig的application context)里创建的beans将只能看到publicBean。
hiddenBean和secretBean只能被在VisibilityConfiguration里创建的beans访问。
任何被@Bean标注的非public方法(protected, private和default)将创建一个'hidden' bean。
在上面的例子里,mainBean使用publicBean和hiddenBean配置。
但是,由于后者是hidden的,在运行时Spring将抛出异常:
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'hiddenBean' is defined
...
为了提供可见度功能,JavaConfig利用Spring提供的application context hierarchy,将所有的hidden beans放在一个子application context里一个
特殊的配置类里。这样,hidden beans可以访问在父(或owning)context里定义的beans,但是相反不行。
1 楼 hideto 2007-07-14  
第二章、组件
Java Configuration使用annotations来让开发人员不离开Java世界就可以创建和配置beans。
简短来说,开发人员使用Java代码来初始化和配置beans,然后指示容器使用它们。
在继续之前,请注意,Spring仍保持相同的语义,而不管采用何种配置方式: Java或者XML。
让我们看看JavaConfig依赖的最重要的annotations:

2.1 @Configuration
@Configuration标记指示配置类:
@Configuration
public class WebConfiguration {
  // bean definitions follow
}

@Configuration是一个class级别的annotation,它指示了配置里定义的bean的一些默认值。
@Configuration(defaultAutowire = Autowire.BY_TYPE, defaultLazy = Lazy.FALSE)
public classDataSourceConfiguration extends ConfigurationSupport {}

它可以认为是<beans/>标签的替代品。
用@Configuration标注的类继承ConfigurationSupport是明智的,因为该类提供了一些辅助方法。

2.2 @Bean
@Bean的名字暗示了一个bean定义(<bean/>标签),让我们以一个简单的例子开始:
@Bean (scope = DefaultScopes.SESSION)
public ExampleBean exampleBean() {
  return new ExampleBean();
}

上面的代码指示Spring容器使用方法名(作为bean的名字)和返回值(实际的bean实例)来创建一个bean。
该bean拥有session作用域,这意味着调用exampleBean()方法将为每个HTTP会话创建一个新的bean实例。
由于使用纯Java,我们在处理静态方法时没有必要使用factory-method:
@Bean
public ExampleBean exampleBean() {
  return ExampleFactory.createBean();
}

或者使用FactoryBean/MethodInvokingFactoryBean来创建复杂对象:
@Bean(aliases = {"anniversaries"})
public List<Date> birthdays() {
  List<Date> dates = new ArrayList<Date>();
  Calendar calendar = Calendar.getInstance();
  calendar.set(1977, 05, 28);
  dates.add(calendar.getTime());
  dates.add(computeMotherInLawBirthday());
  return dates;
}

@Bean是一个method级别的annotation并指示用来创建和配置一个bean实例的Java代码。
该标记支持XML bean定义的大部分选项,如autowiringlazy-initdependency-checkdepends-onscoping
并且,lifecycle方法和*Aware接口完全支持:
public class AwareBean implements BeanFactoryAware {
  private BeanFactory factory;
  // BeanFactoryAware setter
  public void setBeanFactory(BeanFactory beanFactory) throws BeansException {
    this.factory - beanFactory;
  }
  public void close() {
    // do clean-up
  }
}

@Bean(destroyMethodName = "close", lazy = Lazy.TRUE)
public AwareBean createBeanFactoryAwareBean() {
  return new AwareBean();
}

除了destroyMethodName,@Bean标记也支持initMethodName。

2.3 @ExternalBean
@ExternalBean是一个简单的markup标记,它用来注入在父application context中定义的"外部"beans,让我们看看例子:
@Configuration
public abstract class ExternalBeanConfiguration {
  @Bean
  public TestBean james() {
    TestBean james = new TestBean();
    // inject dependency from ann()
    james.setSpouse(ann());
    return james;
  }

  // Will be taken from the parent context
  @ExternalBean
  public abstract TestBean ann();
}

当JavaConfig遇到@ExternalBean时,它将覆盖该方法,这样任何时候该方法被调用时,将在父application context里查找该方法名的bean。
这样,你的配置保持纯Java和重构友好性。
注意@ExternalBean也在普通方法上工作;上面的例子使用抽象方法来避免写入无法执行的dummy code:
@Configuration
public class ExternalBeanOnNormalMethod {
  @ExternalBean
  public TestBean ann() {
    System.out.println("this code will not execute as the method " +
      "will be overriden with a bean look up at runtime");
  }
}


2.4 @ScopedProxy
Spring通过使用scoped proxies来提供方便的方式与scoped dependencies工作。
当使用XML配置时创建这样的proxy最简单的方式为<aop:scoped-proxy/>元素。
JavaConfig提供@ScopedProxy标记作为替换品,它提供相同的语义和配置选项。
参考文档里XML scoped proxy的例子在JavaConfig里看起来像这样:
// a HTTP Session-scoped bean exposed as a proxy
@Bean(scope = DefaultScopes.SESSION)
@ScopedProxy
public UserPreferences userPreferences() {
  return new UserPreferences();
}

@Bean
public Service userService() {
  UserService service = new SimpleUserService();
  // a reference to the proxied 'userPreferences' bean
  service.setUserPreferences(userPreferences());
  return service;
}

相关推荐

    spring-javaconfig-reference

    本文档为Spring JavaConfig参考指南,版本1.0.0.m3,版权属于2005-2008年的Rod Johnson、Costin Leau和Chris Beams。本文档主要分为三部分: 1. **介绍**:介绍JavaConfig的基础概念,包括快速入门教程。 2. **API...

    Spring2.0

    在提供的文档中,《Spring JavaConfig参考文档》详细介绍了如何使用Java类来替代XML配置。Spring 2.0引入了@Configuration和@Bean注解,使得配置更加直观且易于测试。这种方式减少了XML配置的复杂性,提高了代码的...

    springMongodb参考文档中文版

    ### Spring MongoDB 参考文档中文版关键知识点概览 #### 1. 了解Spring - **SpringData**:利用Spring框架的核心功能如IoC容器、类型转换系统等。 - **核心概念**:虽然不需要深入了解Spring API的具体细节,但对...

    Spring Cloud 中文文档 参考手册 中文版2018

    根据提供的文件内容,以下是关于Spring Cloud Dalston中文文档参考手册中文版的知识点详细介绍。 首先,Spring Cloud Dalston是Spring Cloud的一套组件,它帮助开发者构建分布式的系统。Spring Cloud与云原生应用...

    Spring Cloud Dalston 中文文档 参考手册 中文版.pdf

    在分布式系统中,各个服务的配置需要集中管理,Spring Cloud通过Spring Cloud Config组件,可以实现配置的外部化存储,并支持配置动态刷新。 2. 服务发现:服务注册与发现是微服务架构的核心之一,Eureka是Spring ...

    Spring数据JPA - 中文参考文档

    Spring 数据 JPA 是一个强大的框架,它为使用 Java 持久化 API (JPA) 与 Spring 框架集成提供了便利。JPA 允许开发者使用注解来定义实体对象及其数据库行为,减少了手动编写 SQL 和 DAO 类的需求。在 Spring 中,JPA...

    Spring Security 2.0.x完全中文参考文档

    ### Spring Security 2.0.x完全中文参考文档 #### 序言 本文档旨在为用户提供一份详尽且全面的Spring Security 2.0.x版本的中文指南,它不仅覆盖了核心概念、配置方法以及实际应用案例,还深入探讨了安全框架的...

    Spring Cloud 2018最新_官网文档_中文参考手册_pdf

    Spring Cloud 是一个基于Java的微服务开发框架,它为开发者提供了在分布式系统(如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态)操作的一系列...

    java和spring等md文档.zip

    Java 和 Spring 技术栈是现代企业级应用开发的核心组件,涵盖了从基础编程到...通过阅读这些文档,你可以对 Java、Spring、Spring Boot、MyBatis 和 Spring Cloud 有一个全面的理解,并能更好地应用于实际项目中。

    Spring Data JPA1.7中文文档

    创建 Repository 实例可以通过 XML 配置、JavaConfig 或者独立使用 Spring Beans 来实现。例如,使用 `@RepositoryDefinition` 注解定义一个 Repository,然后通过 `JpaRepositoryFactoryBean` 创建其实例。 **JPA ...

    Spring Security 3.0.1 pdf 中文参考文档

    ### Spring Security 3.0.1 中文参考文档知识点概览 #### 一、序言与入门 **1.1 Spring Security 是什么?** - **定义:** Spring Security 是一个强大的且高度可定制的身份验证和授权框架。它为基于 Java 的企业...

    springboot和springcloud中文文档

    在学习和使用过程中,参考"Spring Cloud 中文文档 参考手册 中文版2018.pdf"和"spring-boot-reference-guide-zh.pdf"这两份文档是非常有帮助的。它们详尽地介绍了这两个框架的各个组件、配置、使用示例和最佳实践。...

    Spring1.2api参考手册.zip

    《Spring 1.2 API 参考手册》是学习和理解Spring框架1.2版本核心API的重要资源。Spring是一个开源的Java平台,它为构建企业级应用提供了全面的框架支持,包括依赖注入、面向切面编程(AOP)、数据访问、事务管理、...

    Spring Cloud 中文文档 参考手册 中文版

    Spring Cloud 是一个基于Java的微服务开发框架,它为开发者提供了在分布式系统中实现配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态等多种功能。...

    Spring Cloud Dalston 中文文档 参考手册 中文版 非扫描 完整版

    3. **配置管理**:Spring Cloud Config支持配置中心,可以方便地管理多个环境下的配置文件,并且可以与Spring Cloud Bus整合实现配置的动态刷新。 4. **服务发现**:Eureka是Spring Cloud Netflix中的一个组件,...

    Spring Security参考文档(IV 授权)

    1. **`decide(Authentication authentication, Object object, ConfigAttributeDefinition config)`**: - 这个方法接收三个参数:`Authentication`对象、安全对象(通常是业务逻辑层的对象,如方法或数据对象)、...

    spring cloud中文文档

    这个资源是Spring Cloud的2018年中文参考文档,与官方英文文档同步,为开发者提供了全面且易懂的中文指南。 一、Spring Cloud基础概念 1. **服务发现**:Spring Cloud Netflix Eureka 提供了服务注册与发现的功能,...

    Spring Security 2 参考手册 中文版 (html格式)

    Spring Security 是一个强大的Java安全框架,专为J2EE企业级应用设计,尤其与Spring框架无缝集成。这个框架提供了一整套的安全服务,包括身份验证、授权、访问控制以及会话管理,确保了应用程序的安全性。Spring ...

    一个简单的后台管理系统-基于Java SSM,Java Config配置+源代码+文档说明

    * Java SSM(Java Config) * 权限Spring Security * 缓存Ehcache(后期加入) * 后台数据校验Hibernate Validation(后期加入) * more ## 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请...

Global site tag (gtag.js) - Google Analytics