Spring4.0MVC学习资料,注解自动扫描bean,自动注入bean(二)

Spring4.0的新特性我们在上一章已经介绍过了。包括它对jdk8的支持,Groovy Bean Definition DSL的支持,核心容器功能的改进,Web开发改进,测试框架改进等等。这张我们主要介绍spring4.0的自动扫描功能,以及对bean的过滤等特性进行学习。

好吧,废话少说,我们来看看代码吧。

package com.herman.ss.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.herman.ss.action.TestAction;
import com.herman.ss.filter.Filter1;
import com.herman.ss.filter.Filter2;
import com.herman.ss.filter.test.Filter3;
import com.herman.ss.pojo.House;
import com.herman.ss.pojo.Person;
/**
 * @see spring4.0.0最新稳定版新特性,自动扫描bean,自动注入bean
 * @author Herman.Xiong
 * @date 2014年7月18日14:49:42
 */
public class Test1 {
	/**
	 * @see spring4.0自动扫描bean,自动注入bean
	 */
	public static void test0(){
		//1.加载配置文件
		ApplicationContext ctx=new ClassPathXmlApplicationContext("com/herman/ss/config/applicationContext1.xml");
		//2.获取bean实例
		Person person=(Person)ctx.getBean("person");
		House house=(House)ctx.getBean("house");
		//3.打印bean属性
		System.out.println(person);
		System.out.println(house);
	}

	/**
	 * @see spring4.0简单业务逻辑的注解
	 */
	public static void test1(){
		//1.加载配置文件
		ApplicationContext ctx=new ClassPathXmlApplicationContext("com/herman/ss/config/applicationContext1.xml");
		//2.获取bean实例 获取bean
		TestAction testAction=(TestAction)ctx.getBean("testAction");
		//3.打印bean属性
		System.out.println(testAction);
		//4.调用bean对象的方法
		testAction.testAction();

		//@Service 用于标注业务层组件;
		//@Repository 用于标注数据访问层组件;
		//@Controller 用于标注控制层组件(如:Struts中的action)
		//@Component 表示泛型组件,当组件不好归类的时候,我们可以使用这个组件进行注解。
	}

	/**
	 * @see spring4.0简单注解的排除过滤器配置
	 */
	public static void test2(){
		//1.加载配置文件
		ApplicationContext ctx=new ClassPathXmlApplicationContext("com/herman/ss/config/applicationContext1.xml");
		//2.获取bean实例,只能根据bean的id获取bean
		Filter1 filter1=(Filter1)ctx.getBean("filter1");
		Filter2 filter2=(Filter2)ctx.getBean("filter2");
		//3.打印bean属性
		System.out.println(filter1);
		System.out.println(filter2);
		/**
		 * 运行会报错:Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'filter2' is defined
		 * 原因是:filter2被我们排除在外了,不会自动注入
		 * 因此会抛异常
		 */
	}
	/**
	 * @see spring4.0简单注解的包含过滤器配置
	 */
	public static void test3(){
		//1.加载配置文件
		ApplicationContext ctx=new ClassPathXmlApplicationContext("com/herman/ss/config/applicationContext1.xml");
		//2.获取bean实例
		Filter3 filter3=(Filter3)ctx.getBean("filter3");
		Filter2 filter2=(Filter2)ctx.getBean("filter2");
		Filter1 filter1=(Filter1)ctx.getBean("filter1");
		//3.打印bean属性
		System.out.println(filter3);
		System.out.println(filter2);
		System.out.println(filter1);
		/**
		 * 运行会报错:Exception in thread "main" org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'filter2' is defined
		 * 原因:filter2 被我们排除在外了
		 * 因此:我们回去filter2  这个bean对象的时候就会报错。
		 * filter1  为什么不报错呢,因为我们设置了 com.herman.ss.filter包下面的use-default-filters="true"  自动导入
		 * 因此:filter1 不会报错
		 */
	}

	public static void main(String[] args) {
		/**
		 * 注解需要的jar包列举:
		 * spring-aop-4.0.6.RELEASE.jar
		 * spring-beans-4.0.6.RELEASE.jar
		 * spring-context-4.0.6.RELEASE.jar
		 * spring-core-4.0.6.RELEASE.jar
		 * spring-expression-4.0.6.RELEASE.jar
		 * commons-lang-2.4.jar
		 */
		//test0();
		//test1();
		//test2();
		test3();
	}
}

配置文件源码:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
	http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	http://www.springframework.org/schema/mvc
	http://www.springframework.org/schema/mvc/spring-mvc.xsd
	http://www.springframework.org/schema/context
	http://www.springframework.org/schema/context/spring-context-4.0.xsd">

    <!-- 打开Spring组件自动扫面,并配置要扫描的基本包 -->
    <context:component-scan base-package="com.herman.ss.pojo"></context:component-scan>
    <context:component-scan base-package="com.herman.ss.action"></context:component-scan>
    <context:component-scan base-package="com.herman.ss.biz"></context:component-scan>
    <context:component-scan base-package="com.herman.ss.dao"></context:component-scan>
    <context:component-scan base-package="com.herman.ss.filter" use-default-filters="false">
    	<!-- 取消自动注入,配置只注入com.herman.ss.filter.test下面的所有类 -->
    	<context:include-filter type="regex" expression="com.herman.ss.filter.test.*"/>
    </context:component-scan>
     <context:component-scan base-package="com.herman.ss.filter" use-default-filters="true">
    	<!-- 自动注入,但是Filter2除外 -->
    	<context:exclude-filter type="regex" expression="com.herman.ss.filter.Filter2" />
    </context:component-scan>
	<!--
		注:<context:component-scan>节点用于通知Spring容器扫描组件,base-package属性用于指定将要被扫描的组件所在的包名
		这里将自动的配置扫描com.herman.ss.pojo下面的bean
	 -->
</beans>

实体类源码:

package com.herman.ss.pojo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
/**
 * @see 实体类使用Component注解
 * @author Herman.Xiong
 * @date 2014年7月24日17:11:59
 */
@Component("person")
public class Person {
	private String name;
	private int age;
	//这里设置自动注入
	@Autowired
	private House house;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public int getAge() {
		return age;
	}
	public void setAge(int age) {
		this.age = age;
	}
	public House getHouse() {
		return house;
	}
	public void setHouse(House house) {
		this.house = house;
	}
	public Person() {
		super();
	}
	public Person(String name, int age) {
		super();
		this.name = name;
		this.age = age;
	}
	public Person(String name, int age, House house) {
		super();
		this.name = name;
		this.age = age;
		this.house = house;
	}
	@Override
	public String toString() {
		return "Person [age=" + age + ", house=" + house + ", name=" + name
				+ "]";
	}

}

House.java源码:

package com.herman.ss.pojo;

import org.springframework.stereotype.Component;

@Component("house")
public class House {
	private String name;
	private String address;
	private float price;
	public String getName() {
		return name;
	}
	public void setName(String name) {
		this.name = name;
	}
	public String getAddress() {
		return address;
	}
	public void setAddress(String address) {
		this.address = address;
	}
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}
	public House() {
		super();
	}
	public House(String name, String address, float price) {
		super();
		this.name = name;
		this.address = address;
		this.price = price;
	}
	public String toString() {
		return "House [address=" + address + ", name=" + name + ", price="
				+ price + "]";
	}

}
package com.herman.ss.action;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;

import com.herman.ss.biz.TestBiz;

/**
 * @see 模拟action
 * @author Herman.Xiong
 * @date 2014年7月24日17:17:16
 * @since jdk 1.6,tomcat 6.0
 */
@Controller("testAction")
public class TestAction {

	//使用自动载入
	@Autowired
	private TestBiz testBiz;
	//必须提供set方法
	public void setTestBiz(TestBiz testBiz) {
		this.testBiz = testBiz;
	}

	public TestAction(){
		System.out.println("模拟的action类");
	}

	public void testAction(){
		testBiz.testBiz();
	}
}
package com.herman.ss.biz;

/**
 * @see 模拟biz层进行注解
 * @author Herman.Xiong
 * @date 2014年7月24日17:20:25
 */
public interface TestBiz {
	void testBiz();
}
package com.herman.ss.biz.impl;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;

import com.herman.ss.biz.TestBiz;
import com.herman.ss.dao.TestDao;
@Service("testBiz")
public class TestBizImpl implements TestBiz{
	@Autowired
	private TestDao testDao;

	//必须提供set方法
	public void setTestDao(TestDao testDao) {
		this.testDao = testDao;
	}

	public void testBiz() {
		System.out.println("模拟biz层");
		testDao.testDao();
	}

}
package com.herman.ss.dao;

/**
 * @see 模拟dao层进行注解
 * @author Herman.Xiong
 * @date 2014年7月24日17:20:25
 */
public interface TestDao {
	void testDao();
}
package com.herman.ss.dao.impl;

import org.springframework.stereotype.Repository;

import com.herman.ss.dao.TestDao;
@Repository("testDao")
public class TestDaoImpl implements TestDao{

	public void testDao() {
		System.out.println("模拟dao层");
	}

}
package com.herman.ss.filter;

import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
//Scope注解设置作用域
@Controller("filter1")@Scope("prototype")
public class Filter1 {
	public Filter1(){
		System.out.println("我是Filter1 ...");
		System.out.println("Scope注解设置作用域");
	}
}
package com.herman.ss.filter.test;

import org.springframework.stereotype.Controller;

@Controller("filter3")
public class Filter3 {
	public Filter3(){
		System.out.println("我是filter3");
	}
}
package com.herman.ss.filter;

import org.springframework.stereotype.Controller;

@Controller("filter2")
public class Filter2 {
	public Filter2(){
		System.out.println("我是Filter2 ...");
	}
}


欢迎大家关注我的个人博客!!!!

如有不懂,疑问或者欠妥的地方,请加QQ群:135430763   进行反馈,共同学习!

时间: 2024-12-30 12:27:18

Spring4.0MVC学习资料,注解自动扫描bean,自动注入bean(二)的相关文章

Spring4.0MVC学习资料,ApplicationContext中的方法详解(三)

做为java开源的一部分,spring框架一直排在老大的位置.Spring4.0 是 Spring 推出的一个重大版本升级,进一步加强了 Spring 作为 Java 领域第一开源平台的地位.Spring4.0 引入了众多 Java 开发者期盼的新特性,如泛型依赖注入.SpEL.校验及格式化框架.Rest风格的 WEB 编程模型等.这些新功能实用性强.易用性高,可大幅降低 JavaEE 开发的难度,同时有效提升应用开发的优雅性.为了方便开发,Spring的ApplicationContext类,

Spring4.0MVC学习资料,Controller中的方法详解和使用(四)

在以前,mvc的框架,基本上就是struts框架了.但是现在不一样了.springmvc出来了.spring的mvc框架不亚于struts了,springmvc出来了,我们有了更多的选择. Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面.Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块.使用 Spring 可插入的 MVC 架构,可以选择是使用内置的 Spring Web 框架还可以是 Struts 这样的 We

springmvc4...-springmvc4.0使用@autowired注解自动注入失败

问题描述 springmvc4.0使用@autowired注解自动注入失败 在控制器中自动注入service失败,求大神帮忙.我在serviceImpl中加了@service注解.在controller中是private IUserBiz userBiz这应该没错的 解决方案 楼主你这个问题解决了没? 我也遇到了. 我用的SSH ,Spring4 service层和dao层注入都没问题 action层无法注入 结果删了action的注解写了个set get 就可以了 莫名其妙 解决方案二: 应该

Spring 4.0.2 学习笔记(2) - 自动注入及properties文件的使用

接上一篇继续, 学习了基本的注入使用后,可能有人会跟我一样觉得有点不爽,Programmer的每个Field,至少要有一个setter,这样spring配置文件中才能用<property>...</property>来注入. 能否不要这些setter方法? 答案是Yes 一.为Spring配置文件,添加annotation支持,以及 default-autowire属性 <?xml version="1.0" encoding="UTF-8&qu

综述 | 一文读懂自然语言处理NLP(附学习资料)

前言 自然语言处理是文本挖掘的研究领域之一,是人工智能和语言学领域的分支学科.在此领域中探讨如何处理及运用自然语言. 对于自然语言处理的发展历程,可以从哲学中的经验主义和理性主义说起.基于统计的自然语言处理是哲学中的经验主义,基于规则的自然语言处理是哲学中的理性主义.在哲学领域中经验主义与理性主义的斗争一直是此消彼长,这种矛盾与斗争也反映在具体科学上,如自然语言处理. 早期的自然语言处理具有鲜明的经验主义色彩.如 1913 年马尔科夫提出马尔科夫随机过程与马尔科夫模型的基础就是"手工查频&quo

新学期发力 同步学习资料用酷盘

暑假即将结束,新学期即将来临.在新的学期中,我们怎样才能快速发力,迅速地提高自己的学习成绩呢?答案很简单,除了要注重课堂听讲外,课后还要学会利用各种手段,强化自己与学习的关系.比如,如果你拥有一部智能手机或一台笔记本的话,完全可以利用酷盘这款优秀的网盘工具,来同步自己的学习资料,并与好友们相互分享,这样,资料可随时查看,学习成绩自然也就上去了. 1.同步资料很容易 酷盘最大一个特点是同步资料特容易.安装后,它会在PC和手机中,产生一个系统文件夹(如图1),以后我们只要将自己平时收集到的学习材料,

如何跳出校园网屏蔽下载学习资料?

  在某项行动开始后,校园网屏蔽,可是误把有用的资料也"禁"掉了,如何才能"跳"出校园,下载自己急需的学习资料?下面为大家带来一份越狱教程. 相信现在大家在学校宿舍上网为了方便一般都是接入校园网的宽带吧?众所周知,校园网为了安全等多方面考虑,屏蔽了一些网站,甚至连一些学习资料共享的网站也屏蔽了.屏蔽正当的资源下载,这对于具有自由精神的当代大学生来说当然无法忍受,那我们怎么才能获取自己需要的学习资料呢? 技术思路与提示 OPERA浏览器相信大家都并不陌生,但是它独有的

Spring中我们用到的功能实现:基于注解的Ioc自动装配

  我们要完成自动装配,那么就要有一个存放bean对象的容器,然后要有装配的注解,那么哪些类该被存到容器呢,在spring中我们使用过@Service.@Resource等,看下面的代码,你也可以做到.     来看看这是一个简单的容器接口 /**  * 容器接口  * @author:rex  * @create_time:2014-6-26  * @version:V1.0  */ public interface Container { Object getBean(String name

一个游戏程序员的学习资料

转自:http://software.intel.com/zh-cn/blogs/2012/03/20/400010004/?cid=sw:prccsdn2194 想起写这篇文章是在看侯杰先生的<深入浅出MFC>时, 突然觉得自己在大学这几年关于游戏编程方面还算是有些心得,因此写出这篇小文,介绍我眼中的游戏程序 员的书单与源代码参考.一则是作为自己今后两年学习目标的备忘录,二来没准对别人也有点参考价值.我的原则是只写自己研究过或准备研究的资料,所以内容无 疑会带上强烈的个人喜好色彩, 比如对网