【Java】使用Spring的JavaConfig

栏目: Java · 发布时间: 6年前

内容简介:【Java】使用Spring的JavaConfig
<beans xmlns="http://www.springframework.org/schema/beans"


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"


    xsi:schemaLocation="http://www.springframework.org/schema/beans


    http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">


  

    <bean id="helloBean" class="com.mkyong.hello.impl.HelloWorldImpl">


  

</beans>

其实我们可以使用注解来完成这些事情,例如下面的代码,完成的功能和上面的xml配置的功能是一样的:

import org.springframework.context.annotation.Bean;


import org.springframework.context.annotation.Configuration;


import com.mkyong.hello.HelloWorld;


import com.mkyong.hello.impl.HelloWorldImpl;


  
@Configuration

public class AppConfig {


  

    @Bean(name="helloBean")


    public HelloWorld helloWorld() {


        return new HelloWorldImpl();


    }


  
}

想象一个场景,我们有一个很大的工程项目,如果将所有的bean都配置在一个xml文件中,那么这个文件就会非常的大。所以在很多的时候我们都会将一个大的xml配置文件分割为好几份。这样方便管理,最后在总的那个xml文件中导入就行了,比如:

<beans xmlns="http://www.springframework.org/schema/beans"


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"


    xsi:schemaLocation="http://www.springframework.org/schema/beans


    http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">


  

    <import resource="config/customer.xml"/>


        <import resource="config/scheduler.xml"/>


  

</beans>

但是现在我们也可以使用JavaConfig来完成同样的工作了:

import org.springframework.context.annotation.Configuration;


import org.springframework.context.annotation.Import;


  
@Configuration

@Import({ CustomerConfig.class, SchedulerConfig.class })


public class AppConfig {


  
}

我们对这个例子来看一个demo:

CustomerBo.java

public class CustomerBo {


  

    public void printMsg(String msg) {


  

        System.out.println("CustomerBo : " + msg);


    }


  
}

SchedulerBo.java

public class SchedulerBo {


  

    public void printMsg(String msg) {


  

        System.out.println("SchedulerBo : " + msg);


    }


  
}

现在我们来使用注解:

@Configuration

public class CustomerConfig {


  

    @Bean(name="customer")


    public CustomerBo customerBo(){


  

        return new CustomerBo();


  

    }

}
@Configuration

public class SchedulerConfig {


  

    @Bean(name="scheduler")


    public SchedulerBo suchedulerBo(){


  

        return new SchedulerBo();


  

    }


  
}

AppConfig.java

import org.springframework.context.annotation.Configuration;


import org.springframework.context.annotation.Import;


  
@Configuration

@Import({ CustomerConfig.class, SchedulerConfig.class })


public class AppConfig {


  
}

然后运行:

public class App {


    public static void main(String[] args) {


  

        ApplicationContext context = new AnnotationConfigApplicationContext(


                AppConfig.class);


  

        CustomerBo customer = (CustomerBo) context.getBean("customer");


        customer.printMsg("Hello 1");


  

        SchedulerBo scheduler = (SchedulerBo) context.getBean("scheduler");


        scheduler.printMsg("Hello 2");


  

    }

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

群体的智慧

群体的智慧

[美] 詹姆斯·索罗维基 / 王宝泉 / 中信出版社 / 2010-10 / 33.00元

《纽约时报》榜首畅销书,《商业周刊》《福布斯》杂志最佳商业图书 21世纪商务人士必读书,了解群体智慧时代的决策模式 告诉我们如何过日子、如何选择领导人、如何做生意以及如何思考这个世界 我们当中的大多数人,不论是选民还是投资者,是客户还是经理人,似乎都相信宝贵的知识掌握在少数人手中,认为精英们做出的决策更加聪明,很少有人相信“乌合之众”也能像专家那样做得如此出色。 但《纽约客......一起来看看 《群体的智慧》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

随机密码生成器
随机密码生成器

多种字符组合密码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具