用javaConfig 代替 xml 配置

Posted 写代码隔扣邓肯

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用javaConfig 代替 xml 配置相关的知识,希望对你有一定的参考价值。

@Configuration //注册该类作为javaconfig
public class ApplicationConfig {
    @Bean(name = "helloBean")  //注册该对象为bean
    public Helloworld helloworld(){
        return new HelloworldImpl();
    }
}

Application

public class Application {
    public static void main(String[] args){
        ApplicationContext applicationContext = new AnnotationConfigApplicationContext(ApplicationConfig.class);
        Helloworld helloworld = (Helloworld) applicationContext.getBean("helloBean");
        helloworld.printHelloWorld("This is Spring_JavaConfg!hhhh");
    }
}

2.用@Import加载多个配置文件

@Configuration
@Import({ CustomerConfig.class, SchedulerConfig.class })
public class AppConfig {

}

 

以上是关于用javaConfig 代替 xml 配置的主要内容,如果未能解决你的问题,请参考以下文章

180531-Spring中JavaConfig知识小结

spring3.0使用annotation完全代替XML

Spring中的资源文件框架——Resource

02 装配Bean

Spring重温--Spring JavaConfig

什么是 JavaConfig?