`

spring_annotation_DI(autoware&resoure)

 
阅读更多
一。引入jar包
spring.jar    commons-loggion-1.0.4.jar

二。springIOC,是把一个对象注入到另一个对象。
   处理接口
package com.job.dao;

import com.job.model.User;

public interface UserDAO {
	public void save(User u);
}


  接口实现
package com.job.dao;

import com.job.model.User;

public class UserDAOImpl implements UserDAO{

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


  服务层
public class UserService {
	
	private UserDAO userDAO;
	
	public void add(User u){
		this.userDAO.save(u);
	}

	public UserDAO getUserDAO() {
		return userDAO;
	}
	@Autowired
	public void setUserDAO(@Qualifier("userDAOImpl")UserDAO userDAO) {
		this.userDAO = userDAO;
	}
	
}

@Autowired 注释是自动注入配置文件存在的与当前类属性类型一致的类(默认bytype),
@Qualifier("userDAOImpl")是指定配置文件中存在的bean的ID或name

也可用@Resource(name="employDAOImpl"),@Resource默认配置文件中存在的bean的ID或name


  实体类
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;
	}
	
}


  spring的application.xml配置(使用annotation的autoware自动注入)
<?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 />
	
	<bean id="userService" class="com.job.service.UserService" >
	</bean>

	<bean id="userDAOImpl" class="com.job.dao.UserDAOImpl" lazy-init="true" >
	</bean>
	
	<bean id="employDAOImpl" class="com.job.dao.EmployDAOImpl" lazy-init="true" >
	</bean>
	
	
</beans>

配置<context:annotation-config />初始化annotation组件及其它功能
配置javabean


  测试
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);
		
	}
}

ClassPathXmlApplicationContext方法不写路径,则默认读取项目根路径src下applicationContext.xml文件

测试结果
引用

me haha  ---haha!


分享到:
评论

相关推荐

    Spring_Annotation_AOP

    在本资料"Spring_Annotation_AOP"中,我们将深入探讨Spring框架如何利用注解实现AOP,以及其背后的原理和实践应用。 面向切面编程(AOP)是一种编程范式,旨在提高代码的可维护性和可重用性,通过将关注点分离,...

    Spring_Hibernate_JAVAX_Annotation注解

    ### Spring_Hibernate_JAVAX_Annotation 注解详解 #### 一、概述 本文将详细介绍与SSH(Spring+Struts+Hibernate)开发相关的注解。这些注解覆盖了多个领域,如AspectJ、Batch处理、Spring框架本身的功能(包括...

    Spring_Annotation_IOC代码

    在Spring 2.5版本后,Spring引入了注解来简化配置,这就是所谓的Annotation-based IOC。本文将深入探讨Spring注解驱动的IOC机制。 ### 1. 注解的引入 传统XML配置方式虽然灵活,但随着项目规模的扩大,XML配置文件...

    spring_annotation maven 的配置

    Spring Annotation和Maven的结合使用是现代Java项目中常见的配置方式,它们为开发者提供了高效、灵活的开发环境。本篇文章将深入探讨Spring注解和Maven的配置及其重要性。 **Spring注解** Spring注解是Spring框架...

    Spring_1200_IOC_Annotation_Component

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

    Spring_aop_annotation.zip

    本实践项目以"Spring_aop_annotation.zip"为载体,展示了如何利用注解在Spring框架中实现AOP的功能。下面将详细阐述该项目中的关键知识点。 一、Spring AOP概念 AOP是Aspect Oriented Programming的缩写,它是一种...

    spring_hibernate_annotation的三种实现

    以下将详细介绍"spring_hibernate_annotation的三种实现"。 1. **基于XML的配置** 在早期的Spring和Hibernate集成中,通常使用XML配置文件来定义Bean和数据源,以及映射信息。Spring的`applicationContext.xml`...

    学习Spring笔记_AOP_Annotation实现和XML实现

    Spring框架是Java开发中不可或缺的一部分,它以其强大的依赖注入(DI)和面向切面编程(AOP)功能而闻名。这篇“学习Spring笔记_AOP_Annotation实现和XML实现”主要探讨了如何在Spring中利用注解和XML配置来实现AOP...

    s2sh_annotation.rar_S2SH annotation_s2sh_s2sh_annotation

    在本项目“s2sh_annotation.rar”中,开发者使用了注解的方式来配置这些框架,使得代码更加简洁,减少了XML配置文件的使用。 Struts2框架注解: Struts2通过Action和Result注解简化了Action类的配置。@Action注解...

    Python库 | pyclay_annotation_utils-0.3.6-py3-none-any.whl

    《Python库pyclay_annotation_utils详解》 在Python的生态系统中,库扮演着至关重要的角色,它们极大地丰富了Python的功能并简化了开发过程。今天我们要深入探讨的是名为`pyclay_annotation_utils`的一个库,它在...

    SpringIOC_SpringMVC_SpringAnnotation_JPA

    标题 "SpringIOC_SpringMVC_SpringAnnotation_JPA" 涵盖了四个核心的Java开发框架技术,它们是Spring框架的重要组成部分。Spring框架是一个开源的应用框架,它为Java开发者提供了一个全面的基础设施,用于构建可扩展...

    学习Spring笔记_Annotation(注解)_Component

    3. **依赖注入(Dependency Injection,DI)**:Spring通过注解实现依赖注入,使得对象之间的关系在运行时由Spring容器动态决定,而不是硬编码在类的内部。例如,使用`@Autowired`注解可以自动装配bean的依赖,而`@...

    Java__annotation.mp4

    Java__annotation.mp4

    LabelMeToolbox.zip_LabelMeToolbox_annotation_annotation image_im

    5. "annotation.gif":更进一步的注释过程动画,可能包含了不同类型的注释操作。 6. "matlab.gif":可能展示了与MATLAB集成的功能,因为MATLAB是LabelMeToolbox常用的数据处理环境。 7. "LabelMeNEWtight198x55.gif...

    ormlite_annotation_demos

    在Android应用开发中,`ormlite_annotation_demos`是一个示例项目,展示了如何结合使用`AndroidAnnotations`和`ORMLite`这两个库来简化数据库操作。`AndroidAnnotations`是一个强大的库,它通过注解(annotations)...

    Annotation, Full Page Capture &-3.2.0.zip

    名称:Annotation, Full Page Capture & -------------------- 版本:3.2.0 作者:Instacap.co 分类:生产工具 -------------------- 概述:Instacap 是一个屏幕截图编辑器和注释工具,用于全页屏幕捕获、pdf 注释等...

Global site tag (gtag.js) - Google Analytics