【Java】使用Spring的JavaConfig

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

内容简介:【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");


  

    }

}

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

查看所有标签

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

网站项目管理

网站项目管理

[美] 阿什利·弗里德莱因 / 李保庆、杨磊、王增东 / 电子工业出版社 / 2002-11 / 32.00元

这本书全方位地介绍了如何建立和最终交付一个具有很高商业价值的成功网站,讲解从项目管理的角度入手,撇开烦琐的技术细节,更加关注Web项目实施中诸如成本、进度、工作范围等问题,涉及了一个商业网站在实施过程中可能遇到的所有管理细节。书内附国际一流网站开发专家的深邃见解;涵盖了网络项目管理的关键原则及案例研究;通过友情链接,还为读者提供了模板、论坛、术语表、相关链接以及有关因特网知识的测验题。一起来看看 《网站项目管理》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

html转js在线工具
html转js在线工具

html转js在线工具