spring_150801_autowired_qualifier
新建java project工程,建src、conf、test源码文件夹,导入相关包,需要spring的相关jar包和common-logging相关jar包
接口Service:
- package com.spring;
- public interface DogPetService {
- public void queryAllDogPets();
- }
实现类ServiceImpl:
- package com.spring.service.impl;
- import java.util.List;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.beans.factory.annotation.Qualifier;
- import com.spring.DogPetService;
- import com.spring.dao.DogPetDAO;
- import com.spring.model.DogPet;
- public class DogPetServiceImpl implements DogPetService{
- private DogPetDAO dogPetDAO;
- public DogPetDAO getDogPetDAO() {
- return dogPetDAO;
- }
- @Autowired
- public void setDogPetDAO(@Qualifier("dogPetDAO111") DogPetDAO dogPetDAO) {
- this.dogPetDAO = dogPetDAO;
- }
- @Override
- public void queryAllDogPets() {
- List<DogPet> list = dogPetDAO.queryAllDogPets();
- if(list != null)
- {
- for(DogPet d:list)
- {
- System.out.println(d.toString());
- }
- }
- }
- }
Service调用的DAO类:
- package com.spring.dao;
- import java.util.ArrayList;
- import java.util.List;
- import com.spring.model.DogPet;
- public class DogPetDAO {
- public List<DogPet> queryAllDogPets()
- {
- List<DogPet> list = new ArrayList<DogPet>();
- DogPet d1 = new DogPet();
- d1.setId(1111);
- d1.setName("dog1");
- d1.setAge(4);
- d1.setKind("buladuo");
- d1.setSex("B");
- d1.setHealth("good");
- DogPet d2 = new DogPet();
- d2.setId(2222);
- d2.setName("dog2");
- d2.setAge(3);
- d2.setKind("buladuo");
- d2.setSex("G");
- d2.setHealth("good");
- list.add(d1);
- list.add(d2);
- return list;
- }
- }
配置文件beans.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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context"
- xmlns:jee="http://www.springframework.org/schema/jee" 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/jee http://www.springframework.org/schema/jee/spring-jee-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="dogPetService" class="com.spring.service.impl.DogPetServiceImpl">
- </bean>
- <bean id="dogPetDAO111" class="com.spring.dao.DogPetDAO">
- </bean>
- </beans>
test类,需要引入junit4的相关jar包:
- package com.spring.test;
- import org.junit.Test;
- import org.springframework.context.ApplicationContext;
- import org.springframework.context.support.ClassPathXmlApplicationContext;
- import com.spring.DogPetService;
- public class AutoWiredTest {
- @Test
- public void queryAllDogPets()
- {
- ApplicationContext ctx = new ClassPathXmlApplicationContext("beans.xml");
- DogPetService dogPetService = (DogPetService)ctx.getBean("dogPetService");
- dogPetService.queryAllDogPets();
- }
- }
spring_150801_autowired_qualifier的更多相关文章
随机推荐
- Javascript是一个事件驱动语言
面向原型这种说法我没在网上找到
- iOS 中使用md5加密
#import <CommonCrypto/CommonDigest.h> @implementation MD5Util +(NSString *)encode:(NSString *) ...
- 001--VS2013 c++ 游戏框架
头文件:MainClass.h 内容: #include <Windows.h> //全局函数声明LRESULT CALLBACK WndProc(HWND hwnd, UINT mess ...
- plist 读取 swift
// // ViewController.swift // plist读写 // // Created by mac on 15/7/13. // Copyright (c) 2015年 fangyu ...
- GCC常用命令行一览表
GCC常用命令行一览表 这些常用的 gcc/g++ 命令行参数,你都知道么?1. gcc -E source_file.c-E,只执行到预编译.直接输出预编译结果. 2. gcc -S source_ ...
- android开发 无预览定时拍照
demo实现功能: 打开主页面自动启动定时拍照,10s拍一次. 注意事项,初始化摄像头之后不能立即拍照,否则无效,必须等待几秒后才能拍.这里用的是Handler进行延时处理拍照消息的. package ...
- MySQL 字符串截取相关函数
MySQL 字符串截取相关函数 在工作中,可能需要将某些字段按某个分割符组成一个字符串作为字段值存取到数据库表中,比如某个任务对应三个结果,分别存储在不同的数据表中,这时可以将这三个不同表的主键按照约 ...
- Codeforces Round #278 (Div. 2)
题目链接:http://codeforces.com/contest/488 A. Giga Tower Giga Tower is the tallest and deepest building ...
- 【CoreData】parent-child关系ManagedObjectContext应用
当我们一开始使用CoreData框架和唯一的MOC进行应用的数据持久化的时候,如果创建项目的时候选择了“使用CoreData”,这会是XCode自动生成的模板代码的样子. 同时,配合NSFetched ...
- .NET设计模式(3):抽象工厂模式(Abstract Factory)(转)
概述 在软件系统中,经常面临着“一系列相互依赖的对象”的创建工作:同时由于需求的变化,往往存在着更多系列对象的创建工作.如何应对这种变化?如何绕过常规的对象的创建方法(new),提供一种“封装机制”来 ...