您的位置:首页 > 编程语言 > Java开发

通过在classpath自动扫描方式把组件纳入spring容器中管理

2013-08-23 23:02 609 查看
前面的例子我们都是使用XML的bean定义来配置组件。在一个稍大的项目中,通常会有上百个组件,如果这些组件采用xml的bean定义来配置,显然会增加配置文件的体积,查找及维护起来也不太方便。

spring2.5为我们引入了组件自动扫描机制,它可以在类路径底下寻找标注了@Component、@Service、@Controller、@Repository注解的类,并把这些类纳入进spring容器中管理。它的作用和在xml文件中使用bean节点配置组件是一样的。

要使用自动扫描机制,我们需要打开以下配置信息:
1、引入context命名空间  需要在xml配置文件中配置以下信息:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <context:component-scan base-package="com.xxc"/>
</beans>

2.在配置文件中添加context:component-scan标签
<context:component-scan base-package="com.xxc"/>
其中base-package为需要扫描的包(含子包)。

@Service用于标注业务层组件、

@Controller用于标注控制层组件(如struts中的action)

@Repository用于标注数据访问组件,即DAO组件。

而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。

PersonDao

/*
* @Repository
* 相当于
* <bean id="personDao" class="com.xxc.autoClassPath.dao.PersonDao"/>
*/
@Repository
public class PersonDao {
public void add(){
System.out.println("dao的add方法");
}
}

PersonService

/*
* @Service("personService")
* 相当于
* <bean id="personDao" class="com.xxc.autoClassPath.dao.PersonDao"/>
*  <bean id="personService" class="com.xxc.autoClassPath.service.PersonService">
*      <property name="personDao" ref="personDao"></property>
*  </bean>
*  前提是存在相应的set方法
*/
@Service("personService")
public class PersonService {
@Resource(name="personDao")  //默认按照名称去查找,找不到就按类型找,由于这里指定了name属性所以不会回退到按类型查找
private PersonDao personDao;

public void add(){
System.out.println("service的add方法");
personDao.add();
}
}

applicationContext.xml

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> 
<!-- 使用基于注解的进行注入步骤如下
* 引入context命名空间
xmlns:context=http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd 
* 配置组件的自动扫描,相当于注册了对注解进行解析的处理器
* context:component-scan base-package="com.xxc.autoClassPath.dao"
* base-package="com.xxc.autoClassPath.dao":扫描com.xxc.autoClassPath.dao下所有的包和子孙包中的类
-->
<context:component-scan base-package="com.xxc.autoClassPath"/>

</beans>


测试类

public class Test {
public static void main(String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("com/xxc/autoClassPath/applicationContext.xml");
PersonService service = (PersonService)ac.getBean("personService");
service.add();
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐