zoukankan      html  css  js  c++  java
  • spring中JavaConfig相关的注解

    在spring3.0中增加配置spring beans的新方式JavaConfig,可以替换spring的applicataion.xml配置。也即@Configuration对等<beans/>,@Bean对等<bean/>,关于@Configuration见《spring4.0之二:@Configuration的使用》。

    The following are the list of annotations introduced as part of the JavaConfig module.

    1. @Configuration
    2. @Bean
    3. @DependsOn
    4. @Primary
    5. @Lazy
    6. @Import
    7. @ImportResource
    8. @Value

    In this example I have used only the first two annotations to demonstrate the basic use of JavaConfig features.

    AnnotationConfigApplicationContext is the class used for loading the configuration from Java class file. Look at the below example. If you have any questions, please write it in the comments section.

    1. Create JavaConfig

    The following are the twp steps required for creating the Java configuration classes in the spring framework.

    • Annotate the class with @Configuration annotation
    • Annotate the method with @Bean to indicating that it is bean definition
    package javabeat.net;
    
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    @Configuration
    public class JavaConfig {
        @Bean(name="userDetails")
        public UserDetails userDetails(){
            return new UserDetails();
        }
    }

    2. Create Bean Class

    package javabeat.net;
    
    public class UserDetails {
        private String name;
        private String phone;
        private String city;
        private String country;
    
            // Other methods
    
    }

    3. Load Application Context and Instantiate Bean

    Create AnnotationConfigApplicationContext and get the bean instance. This is very simple example to show you how simple to configure the beans using Java class.

    package javabeat.net;
    
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.annotation.AnnotationConfigApplicationContext;
    
    public class JavaConfigDemo {
        public static void main(String[] args) {
            ApplicationContext context = new AnnotationConfigApplicationContext(JavaConfig.class);
            UserDetails userDetails = (UserDetails) context.getBean("userDetails");
        }
    }

    I hope this article have helped you to understand the use of @Configuration annotation and how to use them. This has been taken as the recommended way for writing the configurations for spring applications.

  • 相关阅读:
    Linux平台开发技术指南
    VIM 笔记 (for python )
    Python如何使用urllib2获取网络资源
    5种获取RSS全文输出的方法
    python IDE比较与推荐
    ESRI ArcGIS 9.0系列软件报价
    去年写的测试GDAL用法的一些函数
    有感所谓“研究”
    超强的病毒“诺顿是个SB”
    如何在博客中插入语法格式高亮的源代码
  • 原文地址:https://www.cnblogs.com/duanxz/p/3508234.html
Copyright © 2011-2022 走看看