Spring3的IOC的annotation学习笔记
以下记录了一个小小的Spring3的annotation的应用笔记。
文件列表:
UserService-interface
UserDao-interface
UserServiceImpl-UserService接口的实现
UserDaoImpl-UserDao接口的实现
User-实体类
package com.niewj.model;
public class User {
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
package com.niewj.service;
import javax.annotation.Resource;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Service;
import com.niewj.dao.LogDao;
import com.niewj.dao.UserDao;
import com.niewj.model.User;
@Service("userServiceImplementation")
// @Component/@Repository/@Controller/@Service
@Scope("singleton")
// @Scope("prototype")
public class UserServiceImpl implements UserService {
// 也可以此处声明,也可以在setter处声明。
/* @Autowired
@Qualifier("userDaoImplementation")*/
//@Resource(name="userDaoImplementation")// 不指定的话,他会找setter方法,最后可以会退到,找byType匹配。
private UserDao uuuserDao;
private LogDao logDao;
public UserDao getUuuserDao() {
return uuuserDao;
}
/*
@Autowired// (required=false)
@Qualifier("userDaoImplementation")// id/name
*/
@Resource(name="userDaoImplementation")
public void setUuuserDao(UserDao uuuserDao) {
this.uuuserDao = uuuserDao;
}
public LogDao getLogDao() {
return logDao;
}
@Autowired
public void setLogDao(LogDao logDao) {
this.logDao = logDao;
}
@Override
public boolean regist(User user) {
logDao.log();
return uuuserDao.save(user);
}
}
package com.niewj.dao;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import org.springframework.stereotype.Repository;
import com.niewj.model.User;
/* @Repository/@Controller/@Service都属于@Component,只是为了更明显的标注业务层、控制层、还是Dao层 */
@Repository("userDaoImplementation")
public class UserDaoImpl implements UserDao {
@PostConstruct// 相当于<bean init-method="init">
public void init(){
System.err.println("实例化DAO后,会马上调用此方法。");
}
@PreDestroy//相当于<bean destroy-method="destroy">
public void destroy(){
System.err.println("销毁DAO之前,会执行此方法。");
}
@Override
public boolean save(User user) {
System.err.println("新增用户:" +user.getName());
return true;
}
}
package com.niewj.dao;
import org.springframework.stereotype.Repository;
@Repository("logDao")
public class LogDaoImpl implements LogDao {
@Override
public void log() {
System.out.println("Logging......记录在日志............OK");
}
}
package com.niewj;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.niewj.model.User;
import com.niewj.service.UserService;
import com.niewj.service.UserServiceImpl;
public class AnnotationTest {
@Test
public void testIocAnnotation() {
ApplicationContext ac = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService loginService = ac.getBean("userServiceImplementation", UserServiceImpl.class);
User user = new User();
user.setName("dotjar");
loginService.regist(user);
}
}
<?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: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/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd"> <import resource="beans.xml" /> </beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:p="http://www.springframework.org/schema/p" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
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/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<!-- 开启Annotation支持 如果有context:component-scan可以省去此处声明-->
<!-- <context:annotation-config /> -->
<context:component-scan base-package="com.niewj">
</context:component-scan>
</beans>
1.UserServiceImpl中的@Service中的字串应该和getBean中的一致;
2.UserDaoImpl中的@Repository中参数应该和UserServiceImpl中Setter方法处的@Autowired@Qualifier("dao参数")一致
3.配置文件中开启注解支持:
*1.配置文件中开启context命名空间支持:<beans>标记中加入:
<1>加入【xmlns】:【xmlns:context="http://www.springframework.org/schema/context"】
<2>加入【xsi:schemaLocation】:
【http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd】
*2.配置文件中开启注解支持:
<context:annotation-config />
*3.因为有<context:component-scan>所以, <context:annotation-config />可以省去。
小结:
1.
@Repository/@Controller/@Service都属于@Component,只是为了更明显的标注业务层、控制层、还是Dao层
2.
@Resource(name="userDaoImplementation")// 不指定name的话,他会找setter方法,按照byName找不到,最后可以byType匹配。
3.
@Autowired // byType自动装配
@Qualifier("userDaoImplementation") //byName,必须有@Autowired同时出现。
Spring3的IOC的annotation学习笔记的更多相关文章
- Spring入门IOC和AOP学习笔记
Spring入门IOC和AOP学习笔记 概述 Spring框架的核心有两个: Spring容器作为超级大工厂,负责管理.创建所有的Java对象,这些Java对象被称为Bean. Spring容器管理容 ...
- Java注解Annotation学习笔记
一.自定义注解 1. 使用关键字 @interface 2. 默认情况下,注解可以修饰 类.方法.接口等. 3. 如下为一个基本的注解例子: //注解中的成员变量非常像定义接口 public @int ...
- IoC容器Autofac学习笔记
一.一个没有使用IoC的例子 IoC的全称是Inversion of Control,中文叫控制反转.要理解控制反转,可以看看非控制反转的一个例子. public class MPGMovieList ...
- JDK5.0 Annotation学习笔记(一)
背景知识: 从JDK5开始提供名为Annotation(注释)的功能,它被定义为JSR-175规范.注释是以"@注释名"在代码中存在的,还可以添加一些参数值,例如: ...
- Spring中的IOC容器(学习笔记)
如何将Bean配置到Spring的Bean容器中 通过xml配置文件: Bean实现类来自第三方类库:如“DataSource”等 需要命名空间配置如:context,aop,mvc等 ...
- Web Service学习笔记(webservice、soap、wsdl、jws详细分析)
Web Service概述 Web Service的定义 W3C组织对其的定义如下,它是一个软件系统,为了支持跨网络的机器间相互操作交互而设计.Web Service服务通常被定义为一组模块化的API ...
- Web Service学习笔记
Web Service概述 Web Service的定义 W3C组织对其的定义如下,它是一个软件系统,为了支持跨网络的机器间相互操作交互而设计.Web Service服务通常被定义为一组模块化的API ...
- Web Service学习笔记(webservice、soap、wsdl、jws详细分析) (转)
Web Service概述 Web Service的定义 W3C组织对其的定义如下,它是一个软件系统,为了支持跨网络的机器间相互操作交互而设计.Web Service服务通常被定义为一组模块化的API ...
- Hibernate 马士兵 学习笔记 (转)
目录(?)[+] 第2课 Hibernate UML图 第3课 风格 第4课 资源 第5课 环境准备 第6课 第一个示例Hibernate HelloWorld 第7课 建立Annotation版本的 ...
随机推荐
- java安全编码指南之:锁的双重检测
目录 简介 单例模式的延迟加载 double check模式 静态域的实现 ThreadLocal版本 简介 双重检测锁定模式是一种设计模式,我们通过首次检测锁定条件而不是实际获得锁从而减少获取锁的开 ...
- chrome文件上传 /获取文件路径c:/fakepath的解决办法
jsp页面 <td style="text-align: left;padding-left: 20px;"> <img name="image&quo ...
- Struts2 学习记录-第一天
Struts2 -01 struts2框架认识 struts2框架是web层框架.struts2框架=webwork+strut1框架发展过来的.struts2框架设计主要用到技术:通过过滤器进行请求 ...
- 【C语言学习笔记系列】C语言编程狼追兔子问题代码解析!
问题描述 一只兔子躲进了10个环形分布的洞中的一个.狼在第一个洞中没有找到兔子,就隔一个洞,到第3个洞去找:也没有找到,就隔2个洞,到第6个洞去找:以后每次多一个洞去找兔子--这样下去,如果一直找不到 ...
- js后台提交成功后 关闭当前页 并刷新父窗体
后台提交成功后 关闭当前页 并刷新父窗体 this.ClientScript.RegisterStartupScript(this.GetType(), "message", &q ...
- 从Linux源码看Socket(TCP)的listen及连接队列
从Linux源码看Socket(TCP)的listen及连接队列 前言 笔者一直觉得如果能知道从应用到框架再到操作系统的每一处代码,是一件Exciting的事情. 今天笔者就来从Linux源码的角度看 ...
- ThreadLocal与Thread与Runable之间的关系
ThreadLocal继承Object,相当于没继承任何特殊的. ThreadLocal没有实现任何接口. ThreadLocal并不是一个Thread,而是Thread的局部变量
- list.add方法参数详解
- .NET CORE 3.1.5 跨域设置
1.Startup配置 1 #region 跨域设置 2 //注意:放到services.AddMvc()之前 3 services.AddCors(options => { 4 options ...
- js中!!的运用
最近在看vue源码. 里面使用Object.defineProperty()中!!吸引眼球 1 export function def (obj: Object, key: string, val: ...