`

spring_annotation_scan(Component)

 
阅读更多
spring自动
项目结构如下:


一。实体类(不重要)
public class User {
	private String username;
	private String password;
	public String getUsername() {
		return username;
	}
	public void setUsername(String username) {
		this.username = username;
	}
	public String getPassword() {
		return password;
	}
	public void setPassword(String password) {
		this.password = password;
	}
	
}


二。自动扫描applicationContext.xml配置
<?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"
		xmlns:tx="http://www.springframework.org/schema/tx"
		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
				http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd" >
	
	<context:annotation-config />
	<context:component-scan base-package="com.job"/>
</beans>

<context:component-scan base-package="com.job"/>配置扫描的包路径

三。服务类
@Scope("prototype")
@Component
public class UserService {
	
	private UserDAO userDAO;
	
	@PostConstruct //相当于xml中bean配置init-method方法,在初始化之前执行此方法
	public void init(){
		System.out.println("init");
	}
	public void add(User u){
		this.userDAO.save(u);
	}

	public UserDAO getUserDAO() {
		return userDAO;
	}
	@Resource(name="u")
	public void setUserDAO(@Qualifier("userDAOImpl")UserDAO userDAO) {
		this.userDAO = userDAO;
	}
	
	@PreDestroy //相当于xml中bean配置destroy-method方法,在初始化之后执此方法
	public void destory(){
		System.out.println("destory");
	}
}

@Component表示自动扫描时的服务组件(也可用@Service)
@Resource(name="u")表示自动注入组件名为"u"

@Scope("prototype")表示获得时新创建一个实例
@PostConstruct/@PreDestroy 表示实例创建和消毁时执行的方法
在applicationContext.xml配置方式如下:
	<bean id="userService" class="com.job.service.UserService" lazy-init="true" init-method="init" destroy-method="destroy" scope="prototype">
		<property name="userDAO" ref="userDAOImpl"></property>
	</bean>


四。服务类实现
@Component("u")
public class UserDAOImpl implements UserDAO{

	@Override
	public void save(User u) {
		System.out.println(u.getUsername()+"user---haha!");
	}
}

@Component("u")表示组件,也可用(@Repository("u"))

五。服务实现接口(不重要)
public interface UserDAO {
	public void save(User u);
}


六。测试
public class UserServiceTest {
	@Test
	public void test(){
		ApplicationContext ac =  new ClassPathXmlApplicationContext("applicationContext.xml");
		UserService service = (UserService)ac.getBean("userService");
		User u = new User();
		u.setUsername("me haha  ");
		service.add(u);
		
	}
}


七。测试结果

me haha  user---haha!










  • 大小: 23.8 KB
分享到:
评论

相关推荐

    Spring_1200_IOC_Annotation_Component

    标题中的"Spring_1200_IOC_Annotation_Component"表明我们即将探讨的是关于Spring框架的IoC(Inversion of Control,控制反转)和基于注解的组件管理。在这个主题下,我们将深入理解Spring如何通过注解来实现依赖...

    学习Spring笔记_Annotation(注解)_Component

    在Spring配置文件中,可以使用 `&lt;context:component-scan&gt;` 标签指定需要扫描的包,这样Spring就会在这些包及其子包中查找标记了相应注解的类。 3. **依赖注入(Dependency Injection,DI)**:Spring通过注解实现...

    Spring_Annotation_IOC代码

    通过在Spring配置文件中启用`&lt;context:component-scan&gt;`标签,Spring会自动扫描指定包及其子包下的所有类,找出标记了`@Component`家族注解的类,并将其注册为Bean。这样就无需手动在XML中定义Bean了。 ### 4. `@...

    详解Spring_3.0基于Annotation的依赖注入实现

    ### 详解Spring 3.0基于Annotation的依赖注入实现 #### 概述 Spring框架作为一个广泛使用的Java开发框架,提供了强大的依赖注入(Dependency Injection, DI)能力,帮助开发者轻松管理和组织复杂的Java应用。随着...

    spring 的Annotation方式

    ### Spring的Annotation方式详解 #### 引言 随着Spring框架的发展,其依赖注入(DI)机制也经历了从XML配置向注解驱动的重大转变。自Spring 3.0版本起,框架引入了一系列注解来简化依赖配置,使得开发人员能够在不...

    Spring的Annotation配置相关讲义

    `&lt;context:component-scan&gt;`元素用于指定需要扫描的包,这样Spring会自动发现这些包下标记了如`@Component`、`@Service`、`@Repository`等注解的类,并将它们注册为Bean。 接着,我们看DAO层的配置。使用`@...

    spring_MVC源码

    14. &lt;bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" /&gt; 15. 16. &lt;!-- 对模型视图名称的解析,即在模型视图名称添加前后缀 --&gt; 17. &lt;bean class="org....

    最新Hibernate3[1].2_+_Spring_2.5_+_Struts_2.1_整合开发手册

    &lt;context:component-scan base-package="com.ssh"/&gt; &lt;bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"&gt; &lt;!-- 使用基于注解方式配置事务 --&gt; &lt;tx:annotation-...

    Spring注释 注入方式源码示例,Annotation

    花了些时间做了一个实验,彻底弄懂了spring Annotation注入的方式。凡带有@Component,@Controller,@Service,@Repository 标志的等于告诉Spring这类将自动产生对象,而@Resource则等于XML配置中的ref,告诉spring此处...

    基于注解的Spring_3.0.x_MVC

    &lt;context:include-filter expression="org.springframework.stereotype.Controller" type="annotation"/&gt; &lt;/context:component-scan&gt; 这将扫描 com.dn 包下的所有类,并将其作为 Bean 加载到 Spring ...

    spring_tx_aspectj方式源码

    1. **启用注解驱动**:在Spring主配置文件中,添加`&lt;context:component-scan&gt;`标签扫描带有注解的类,并启用`&lt;tx:annotation-driven&gt;`标签来激活基于注解的事务管理。 2. **事务注解**:在需要事务管理的方法上使用...

    java_spring_day05.pdf

    &lt;context:component-scan base-package="com.example"/&gt; &lt;!-- 其他配置... --&gt; ``` 4. **整合步骤:** - 配置Hibernate与Spring的集成,包括SessionFactory、TransactionManager等。 - 使用`@Repository`、...

    spring组件扫描contextcomponent-scan使用详解.pdf

    Spring 组件扫描&lt;context:component-scan/&gt;使用详解 在 Spring 框架中,组件扫描是指通过注解和 XML 配置来自动检测和加载Bean的过程。下面将详细介绍&lt;context:component-scan/&gt;标签的使用方式和原理。 一、...

    Spring - Annotation 自动匹配注入IOC

    在Spring框架中,注解(Annotation)被广泛用于简化配置,提高代码的可读性和可维护性。在本文中,我们将深入探讨Spring如何通过注解实现自动匹配和注入依赖(Inversion of Control, IOC),以及它如何提升开发效率...

    spring5.0_mvc_maven项目_HelloWorld实例

    &lt;context:component-scan base-package="com.yourpackage"/&gt; &lt;mvc:annotation-driven/&gt; &lt;!-- 视图解析器配置 --&gt; &lt;bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"&gt; ...

    Spring 3.0所需jar文件和对应的配置文件

    nested exception is java.lang.IllegalStateException: Context namespace element 'component-scan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are ...

    SpringFramework_3.1.0RELEASE版本_框架搭建

    在上述配置中,`component-scan`元素扫描指定包下的类,寻找带有@Controller、@Service、@Repository等注解的组件,而`mvc:annotation-driven`则启用了基于注解的MVC功能,如自动处理@RequestBody、@ResponseBody等...

    spring annotation 入门

    ### Spring Annotation 入门 #### 一、Spring 注解概述 Spring 框架自2.0 版本起引入了一系列注解支持,这极大简化了配置管理,并为开发提供了更为简洁灵活的方式。通过注解,可以将业务逻辑与配置分离,减少XML...

Global site tag (gtag.js) - Google Analytics