(7) 让Spring自动扫描和管理Bean ---- 通过在classpath自动扫描方式把组件纳入spring容器中管理

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

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

<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="cn.itcast"/>

</beans>


其中base-package为需要扫描的包(含子包)。

          @Service用于标注业务层组件、 @Controller用于标注控制层组件(如struts中的action)、@Repository用于标注数据访问组件,即DAO组件。而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
  1. package cn.itm.dao.impl; 
  2.  
  3. import org.springframework.stereotype.Repository; 
  4.  
  5. import cn.itm.dao.PersonDao; 
  6.  
  7. @Repository // 要交给Spring管理了哈。 
  8. public class PersonDaoBean implements PersonDao { 
  9.  
  10.      
  11.     public void add(){ 
  12.         System.out.println("执行PersonDaoBean的add方法。。。"); 
  13.     } 

  1. package cn.itm.service.impl; 
  2.  
  3. import javax.annotation.PostConstruct; 
  4. import javax.annotation.PreDestroy; 
  5.  
  6. import org.springframework.context.annotation.Scope; 
  7. import org.springframework.stereotype.Service; 
  8.  
  9. import cn.itm.dao.PersonDao; 
  10. import cn.itm.service.PersonService; 
  11.  
  12. @Service("personService"
  13. public class PersonServiceBean implements PersonService{ 
  14.  
  15.     private PersonDao personDao; 
  16.      
  17.      
  18.     public void setPersonDao(PersonDao personDao) { 
  19.         this.personDao = personDao; 
  20.     } 
  21.      
  22.     @PostConstruct 
  23.     public void init(){ 
  24.         System.out.println("初始化----bean"); 
  25.     } 
  26.      
  27.     @PreDestroy 
  28.     public void destory(){ 
  29.         System.out.println("关闭资源"); 
  30.     } 
  31.      
  32.     public void save(){ 
  33.         personDao.add(); 
  34.     } 
  35.      

< ?xml version="1.0" encoding="UTF-8"?>
< 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="cn.itm"/>

</beans>


  1. public class SpringTest { 
  2.  
  3.     @BeforeClass 
  4.     public static void setUpBeforeClass() throws Exception { 
  5.     } 
  6.  
  7.     // 专门用来实例化  Spring 容器的。 
  8.     @Test public void instanceSpring(){ 
  9.          
  10.         ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml"); 
  11.         PersonService personService = (PersonService) ctx.getBean("personService"); 
  12.          
  13.         /*PersonDao personDao = (PersonDao) ctx.getBean("personDaoBean");
  14.         System.out.println("personService=" + personService);
  15.         System.out.println("personDao=" + personDao);*/ 
  16.         ((AbstractApplicationContext) ctx).close(); 
  17.     } 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在SSM引入jdbc.properties文件通常是用来配置数据源的相关信息,包括数据库的连接地址、用户名、密码等。一般情况下,jdbc.properties文件应该在spring.xml文件进行配置。 在spring.xml文件,可以使用PropertyPlaceholderConfigurer来加载jdbc.properties文件,将配置信息注入到Bean,以便在应用程序使用。示例代码如下: ```xml <bean id="propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" value="classpath:jdbc.properties"/> </bean> ``` 然后在配置数据源的Bean,可以使用${key}的方式来引用jdbc.properties文件的配置项。示例代码如下: ```xml <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" destroy-method="close"> <property name="driverClassName" value="${jdbc.driverClassName}"/> <property name="url" value="${jdbc.url}"/> <property name="username" value="${jdbc.username}"/> <property name="password" value="${jdbc.password}"/> </bean> ``` 其,${jdbc.driverClassName}、${jdbc.url}、${jdbc.username}和${jdbc.password}就是jdbc.properties文件定义的配置项。 至于mybatis-config.xml文件,它是用来配置MyBatis框架的相关信息,包括插件、别名、类型处理器等。虽然在mybatis-config.xml文件也可以引用jdbc.properties文件的配置项,但是通常情况下,这些配置项的值并不会被MyBatis框架直接使用,而是交由数据源进行处理。因此,在SSM,我们通常将jdbc.properties文件的配置放在spring.xml文件

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值