`
lanqiaoyeyu
  • 浏览: 25098 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Spring学习(六) 通过在classpath自动扫描方式把组件纳入Spring容器中管理

    博客分类:
  • Java
 
阅读更多
之前我们都是使用XML的bean定义来配置组件,在大项目中,通常会使用很多组件,如果这些组件都采用xml的bean定义来配置,显然会增加配置文件的体积,查找以及维护起来也不方便。Spring2.5为我们引入了组件自动扫描机制,可以在类路径底下寻找标注了@Component、@Service、@Controller、@Repository注解的类,并把这些类纳入进Spring容器中管理。它的作用和在xml文件使用bean节点配置组件都是一样的。要使用自动扫描机制,我们需要打开以下配置信息:
<?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="com.bill"/>
</beans>

其中,base-package="com.bill"为需要扫描的包(包含子包)。@Service用于标注业务层组件,@Controller用于标注控制层组件(入struts中的action),@Repository用于标注数据访问组件,即DAO组件,而@Component泛指组件,当组件不好归类的时候,我们可以使用这个注解进行标注。
例如:
数据访问层代码:
package com.bill.dao.impl;

import org.springframework.stereotype.Repository;
import com.bill.dao.PersonDao;

@Repository
public class PersonDaoBean implements PersonDao {
	public void add() {
		System.out.println("this is add() of PersonDaoBean");
	}
}

业务层代码:
package com.bill.impl;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;

import com.bill.PersonService;
import com.bill.dao.PersonDao;
/**
 * if Scope is prototype, it means new the object when using this bean
 * @author Bill
 *
 */
@Service("personService") //指定bean名字
//@Service("personService") @Scope("prototpye")//指定bean名字,并且每调用这个类,就创建新的对象
//@Service //默认bean的名称为类名的第一个字母小写,如personServiceBean
public class PersonServiceBean implements PersonService {
	private PersonDao personDao;
	public void save(){
		personDao.add();
	}

	//当Spring容器装载前执行初始化方法
	@PostConstruct
	public void init(){
		System.out.println("init() function");
	}
	
	//当Spring容器卸载之前执行释放资源方法
	@PreDestroy
	public void destroy(){
		System.out.println("destroy resource");
	}
}


测试代码:
		AbstractApplicationContext act = new ClassPathXmlApplicationContext("beans.xml");
		PersonService personService = (PersonService)act.getBean("personService");
		personService.save();
	    act.close();
分享到:
评论

相关推荐

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

    在Spring框架中,自动扫描(Auto-Component Discovery)是一种便捷的方式,它允许开发者无需显式配置每个bean,就能将类路径下(classpath)的特定包及其子包中的组件(即带有特定注解的类)纳入Spring容器进行管理...

    Spring2.5 自动扫描classpath

    标题中的“Spring2.5 自动扫描classpath”指的是Spring框架在2.5版本中引入的一项功能,即自动组件扫描(Auto-Component Scanning)。这项功能允许开发者无需在XML配置文件中显式声明bean,而是通过在类上添加特定...

    浅析Spring配置中的classpath:与classpath*:的区别

    本文对 Spring 配置中的 classpath: 与 classpath*: 的区别进行了详细的介绍,希望能够对读者的学习或工作产生一定的参考借鉴价值。需要的朋友可以继续浏览相关文章,获取更多关于 Spring 配置的知识。

    spring和mybatis整合(mapper代理自动扫描方式实现)

    在Java Web开发中,Spring和MyBatis是两个非常重要的框架。Spring是一个全面的后端开发框架,提供了依赖注入、AOP(面向切面编程)、事务管理等功能;而MyBatis则是一个轻量级的持久层框架,它将SQL与Java代码分离,...

    Spring中使用classpath加载配置文件浅析

    在Spring中,可以通过ApplicationContext接口的实现类,比如ClassPathXmlApplicationContext,来加载位于classpath中的配置文件。例如,创建一个ApplicationContext对象的代码如下: ```java ApplicationContext ...

    springIOC核心组件分析.vsdx

    spring-context-indexer:类管理组件和Classpath扫描 spring-expression:表达式语句 切面编程: spring-aop:面向切面编程,CGLB,JDKProxy spring-aspects:集成AspectJ,Aop应用框架 spring-instrume

    Spring学习资料

    在非Web环境下,Spring容器可以通过ClassPathResource、FileSystemResource或者InputStreamResource加载XML配置文件,然后创建XmlBeanFactory或ApplicationContext实例来初始化容器。例如,我们可以从classpath路径...

    Spring 容器后处理器

    容器后处理器在Spring框架中扮演着重要的角色,它们不仅可以帮助开发者更加灵活地管理配置信息,还能增强应用程序的可维护性和可扩展性。通过实现BeanFactoryPostProcessor接口并利用Spring提供的内置后处理器,...

    SpringCloud学习笔记

    5. **自动装配**:自动配置是SpringBoot的一大特色,它通过`classpath:/META-INF/spring.factories`中的配置信息进行初始化。开发者可以通过`@EnableAutoConfiguration`注解启用自动配置,而这个注解通常在`@...

    Spring源码学习七:web应用自动装配Spring配置文件1

    本文主要围绕"Spring源码学习七:web应用自动装配Spring配置文件1"这一主题,详细解析Web环境中Spring的初始化过程。 首先,我们注意到在传统的Java应用程序中,通常使用`ClassPathXmlApplicationContext`手动创建...

    Spring5.0中文开发手册

    - 介绍了依赖注入的概念及其在Spring中的实现方式。 - **3.4.2 Dependencies and configuration in detail** - 详细讨论了依赖项的配置和注入细节。 - **3.4.3 Using depends-on** - 使用`depends-on`属性确保...

    spring管理struts的action的代码

    为了实现Spring对Struts Action的管理,我们需要在Web应用中配置Spring容器,并通过Spring来创建和管理Struts中的Action实例。这样做的好处在于,Action实例的生命周期和依赖关系都可以由Spring容器来管理,提高了...

    spring framewok 4参考文档

    这两个概念在Spring中是密不可分的,它们允许开发者通过配置和注解的方式来管理对象之间的依赖关系,简化了组件之间的耦合,实现了松耦合的架构,这在大型项目中尤其重要。 依赖注入可以通过多种方式实现,例如通过...

    Spring整合Mybatis+SpringIOC

    控制反转是一种设计原则,它将对象的创建和管理交给容器(在Spring中是IoC容器),而不是由对象自身负责。这使得代码更加模块化,降低耦合度。 2. **依赖注入** Spring通过依赖注入(Dependency Injection,简称...

    跟我学Spring,Spring3学习资料

    - **DI的配置使用:** 详细介绍了如何在Spring中通过配置来实现DI,例如通过构造器注入、setter方法注入等方式。 - **循环依赖:** 指的是两个或多个类相互依赖对方,形成闭环。Spring通过三级缓存机制解决循环依赖...

    spring 4.x源码方式配置spring beans

    Bean是Spring容器管理的对象,它们是应用程序的组件,可以通过XML、Java注解或编程方式进行配置。在Spring 4.x中,源码配置主要依赖于`@Configuration`和`@Bean`注解。 `@Configuration`注解标记一个类为配置类,这...

Global site tag (gtag.js) - Google Analytics