spring 注解方式配置Bean

概要:




再classpath中扫描组件

  • 组件扫描(component scanning):Spring可以从classpath下自己主动扫描。侦測和实例化具有特定注解的组件
  • 特定组件包含:
    • @Component:基本注解。标示了一个受Spring管理的组件(能够混用。spring还无法识别详细是哪一层)
    • @Respository:建议标识持久层组件(能够混用。spring还无法识别详细是哪一层)
    • @Service:建议标识服务层(业务层)组件(能够混用,spring还无法识别详细是哪一层)
    • @Controller:建议标识表现层组件(能够混用,spring还无法识别详细是哪一层)
  • 对于扫描到的组件,Spring有默认的命名策略:使用非限定类名,第一个字母小写(UserServiceImpl-》userServiceImpl),也能够再注解中通过value属性值标识组件的名称(通常能够将UserServiceImpl —》userService,能够将Impl拿掉,这是一个习惯)

在classpath中扫描组件
  • 当在组件类中使用了特定的注解之后,还须要在Spring的配置文件里声明<context:component-scan>:
    • base-package属性指定一个须要扫描的基类包,Spring容器将会扫描整个基类包里及其子包中的全部类
    • 当须要扫描多个包时,能够使用逗号分隔
    • 假设仅希望扫描特定的类而非基包下的全部类,可使用resource-pattern属性过滤特定的类。实例: 
    • <context:include-filter>子节点表示要包括的目标类
    • <context:exclude-filter>子节点表示要排除在外的目标类
    • <context:component-scan>下能够拥有若干个<context:include-filter>和<context:exclude-filter>子节点
    • <context:include-filter>和<context:exclude-filter>子节点支持多种类型的过滤表达式: 

组件装配
  • <context:component-sacn>元素还会自己主动注冊AutowireAnnotationBeanPostProcessor实例。该实例能够自己主动装配具有@Autowired和@Resource、@Inject注解的属性

使用@Autowired自己主动装配Bean
  • @Autowired注解自己主动装配具有兼容类型的单个Bean属性
    • 能够放在构造器或普通字段(即使是非public)或一切具有參数的方法都能够应用@Authwired注解
    • 默认情况下,全部使用@Autowired注解的属性都须要被设置。当Spring找不到匹配的Bean装配属性时,会抛出异常。若某一属性同意不被设置,能够设置@Authwired注解的required属性为false
    • 默认情况下,当IOC容器里存在多个类型兼容的Bean时(@Autowired先是依照类型匹配Bean。假设存在多个类型同样的Bean,此时IOC容器会去寻找与属性名同样名字的Bean),通过类型的自己主动装配将无法工作,此时能够在@Qualifier注解里Bean属性的名称。Spring同意对方法的方法的输入參数标注@Qualifier以指定注入Bean的名称
    • @Authwired注解也能够应用在数组类型的属性上。此时Spring将会把全部匹配的Bean进行自己主动装配
    • @Authwired注解也能够应用在集合属性上。此时Spring读取该集合的类型信息。然后自己主动装配全部与之兼容的Bean
    • @Authwired注解用在java.util.Map上时,若该Map的键值为String,那么Spring将会自己主动装配与之Map值类型兼容的Bean,此时Bean的名称作为键值

 使用@Resource或@Inject自己主动装配Bean
  • Spring还支持@Resource和@Inject注解。这两个注解和@Autowired注解的功能类似
  • @Resource注解要求提供一个Bean名称的属性,若该属性为空,则自己主动採用标注处的变量或方法名作为Bean的名称
  • @Inject和@Autowired注解一样也是依照类型匹配注入的Bean,但没有required属性
  • 建议使用@Autowired注解


实例代码具体解释:
代码结构

注意:使用注解还须要导入spring-aop-4.0.5.RELEAE.jar这个包


TestObject.java
package com.coslay.beans.annotation;import org.springframework.stereotype.Component;public class TestObject {}


UserController.java
package com.coslay.beans.annotation.controller;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;import com.coslay.beans.annotation.service.UserService;@Controller
public class UserController {@Autowiredprivate UserService userService;public void execute(){System.out.println("UserController execute...");userService.add();}
}



UserService.java
package com.coslay.beans.annotation.service;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Repository;
import org.springframework.stereotype.Service;import com.coslay.beans.annotation.reporsitory.UserRepository;@Service
public class UserService {private UserRepository userRepository;//假设有多个类型匹配时。则会去匹配与这个属性名字同样的Bean的名字//@Repository("userRepository")//public class UserRepositoryImpl implements UserRepository{//由于名字同样所以匹配成功//能够将@Autowired放在字段或者方法上//假设没有指定名字//另一种方法是使用@Qualifier("userRepositoryImpl")//用来指定哪一个指定名字的Bean//能够将该标签放在字段,设置方法或者设置方法的传入參数前面@Autowired@Qualifier("userRepositoryImpl")public void setUserRepository(UserRepository userRepository){this.userRepository = userRepository;}//	@Autowired
//	public void setUserRepository(@Qualifier("userRepositoryImpl") UserRepository userRepository){
//		this.userRepository = userRepository;
//	}public void add(){System.out.println("UserService add...");userRepository.sava();}
}


UserRepository.java
package com.coslay.beans.annotation.reporsitory;public interface UserRepository {void sava();}



UserRepositoryImpl.java
package com.coslay.beans.annotation.reporsitory;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Repository;import com.coslay.beans.annotation.TestObject;@Repository("userRepository")
public class UserRepositoryImpl implements UserRepository{@Autowired(required=false)private TestObject testObject;@Overridepublic void sava() {System.out.println("UserRepository Save...");System.out.println(testObject);}}


UserJdbcRepository.java
package com.coslay.beans.annotation.reporsitory;import org.springframework.stereotype.Repository;@Repository
public class UserJdbcRepository implements UserRepository {@Overridepublic void sava() {System.out.println("UserJdbcRepository sava...");}}



Main.java
package com.coslay.beans.annotation;import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;import com.coslay.beans.annotation.controller.UserController;
import com.coslay.beans.annotation.reporsitory.UserRepository;
import com.coslay.beans.annotation.service.UserService;public class Main {public static void main(String[] args) {ApplicationContext ctx = new ClassPathXmlApplicationContext("beans-annotation.xml");//		TestObject to = (TestObject) ctx.getBean("testObject");
//		System.out.println(to);
//		UserController userController = (UserController) ctx.getBean("userController");System.out.println(userController);userController.execute();//		
//		UserService userService = (UserService) ctx.getBean("userService");
//		System.out.println(userService);
//		
//		UserRepository userRepository = (UserRepository) ctx.getBean("userRepository");
//		System.out.println(userRepository);}
}


beans-annotation.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" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"> <!-- 指定Spring IOC 容器扫描的包 --> <!-- 能够通过resource-pattern指定扫描的资源 --> <!-- <context:component-scan base-package="com.coslay.beans.annotation" resource-pattern="reporsitory/*.class"> </context:component-scan> --> <!-- context:exclude-filter 子节点指定排除哪些指定表达式的组件 context:include-filter 子节点指定包括哪些表达式的组件,该子节点须要use-default-filters="false"配合使用(假设use-default-filters="ture"则使用系统默认扫描全部带有@Component@Controller@Service@Repository的组件) --> <context:component-scan base-package="com.coslay.beans.annotation"> <!-- <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Repository"/> --> <!-- <context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/> --> <!-- <context:exclude-filter type="assignable" expression="com.coslay.beans.annotation.reporsitory.UserRepository"/> --> <!-- <context:include-filter type="assignable" expression="com.coslay.beans.annotation.reporsitory.UserRepository"/> --> </context:component-scan> </beans>



转载于:https://www.cnblogs.com/liguangsunls/p/7349604.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391701.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

零元学Expression Blend 4 - Chapter 25 以Text相关功能就能简单做出具有设计感的登入画面...

原文:零元学Expression Blend 4 - Chapter 25 以Text相关功能就能简单做出具有设计感的登入画面本章将交大家如何运用Blend 4 内的Text相关功能做出有设计感的登入画面 让你五分钟就能快速做出一个登入画面 ? 本章将教大家如何运用Blend 4 内的Text相关功能做出有设计感的登入…

冠状病毒时代的负责任数据可视化

First, a little bit about me: I’m a data science grad student. I have been writing for Medium for a little while now. I’m a scorpio. I like long walks on beaches. And writing for Medium made me realize the importance of taking personal responsibility ove…

集合_java集合框架

转载自http://blog.csdn.net/zsw101259/article/details/7570033 Java集合框架图 简化图&#xff1a; Java平台提供了一个全新的集合框架。“集合框架”主要由一组用来操作对象的接口组成。不同接口描述一组不同数据类型。 1、Java 2集合框架图 ①集合接口&#xff1a;6个…

显示随机键盘

显示随机键盘 1 <!DOCTYPE html>2 <html lang"zh-cn">3 <head>4 <meta charset"utf-8">5 <title>7-77 课堂演示</title>6 <link rel"stylesheet" type"text/css" href"style…

数据特征分析-统计分析

一、统计分析 统计分析是对定量数据进行统计描述&#xff0c;常从集中趋势和离中趋势两个方面分析。 集中趋势&#xff1a;指一组数据向某一中心靠拢的倾向&#xff0c;核心在于寻找数据的代表值或中心值-统计平均数&#xff08;算数平均数和位置平均数&#xff09; 算术平均数…

数据eda_银行数据EDA:逐步

数据edaThis banking data was retrieved from Kaggle and there will be a breakdown on how the dataset will be handled from EDA (Exploratory Data Analysis) to Machine Learning algorithms.该银行数据是从Kaggle检索的&#xff0c;将详细介绍如何将数据集从EDA(探索性…

结构型模式之组合

重新看组合/合成&#xff08;Composite&#xff09;模式&#xff0c;发现它并不像自己想象的那么简单&#xff0c;单纯从整体和部分关系的角度去理解还是不够的&#xff0c;并且还有一些通俗的模式讲解类的书&#xff0c;由于其举的例子太过“通俗”&#xff0c;以致让人理解产…

计算机网络原理笔记-三次握手

三次握手协议指的是在发送数据的准备阶段&#xff0c;服务器端和客户端之间需要进行三次交互&#xff1a; 第一次握手&#xff1a;客户端发送syn包(synj)到服务器&#xff0c;并进入SYN_SEND状态&#xff0c;等待服务器确认&#xff1b; 第二次握手&#xff1a;服务器收到syn包…

Bigmart数据集销售预测

Note: This post is heavy on code, but yes well documented.注意&#xff1a;这篇文章讲的是代码&#xff0c;但确实有据可查。 问题描述 (The Problem Description) The data scientists at BigMart have collected 2013 sales data for 1559 products across 10 stores in…

数据特征分析-帕累托分析

帕累托分析(贡献度分析)&#xff1a;即二八定律 目的&#xff1a;通过二八原则寻找属于20%的关键决定性因素。 随机生成数据 df pd.DataFrame(np.random.randn(10)*10003000,index list(ABCDEFGHIJ),columns [销量]) #避免出现负数 df.sort_values(销量,ascending False,i…

dt决策树_决策树:构建DT的分步方法

dt决策树介绍 (Introduction) Decision Trees (DTs) are a non-parametric supervised learning method used for classification and regression. The goal is to create a model that predicts the value of a target variable by learning simple decision rules inferred f…

读C#开发实战1200例子记录-2017年8月14日10:03:55

C# 语言基础应用&#xff0c;注释 "///"标记不仅仅可以为代码段添加说明&#xff0c;它还有一项更重要的工作&#xff0c;就是用于生成自动文档。自动文档一般用于描述项目&#xff0c;是项目更加清晰直观。在VisualStudio2015中可以通过设置项目属性来生成自动文档。…

数据特征分析-正太分布

期望值&#xff0c;即在一个离散性随机变量试验中每次可能结果的概率乘以其结果的总和。 若随机变量X服从一个数学期望为μ、方差为σ^2的正态分布&#xff0c;记为N(μ&#xff0c;σ^2)&#xff0c;其概率密度函数为正态分布的期望值μ决定了其位置&#xff0c;其标准差σ决定…

r语言调用数据集中的数据集_自然语言数据集中未解决的问题

r语言调用数据集中的数据集Garbage in, garbage out. You don’t have to be an ML expert to have heard this phrase. Models uncover patterns in the data, so when the data is broken, they develop broken behavior. This is why researchers allocate significant reso…

数据特征分析-相关性分析

相关性分析是指对两个或多个具备相关性的变量元素进行分析&#xff0c;从而衡量两个变量的相关密切程度。 相关性的元素之间需要存在一定的联系或者概率才可以进行相关性分析。 相关系数在[-1,1]之间。 一、图示初判 通过pandas做散点矩阵图进行初步判断 df1 pd.DataFrame(np.…

获取所有权_住房所有权经济学深入研究

获取所有权Note from Towards Data Science’s editors: While we allow independent authors to publish articles in accordance with our rules and guidelines, we do not endorse each author’s contribution. You should not rely on an author’s works without seekin…

getBoundingClientRect说明

getBoundingClientRect用于获取某个元素相对于视窗的位置集合。 1.语法&#xff1a;这个方法没有参数。 rectObject object.getBoundingClientRect() 2.返回值类型&#xff1a;TextRectangle对象&#xff0c;每个矩形具有四个整数性质&#xff08; 上&#xff0c; 右 &#xf…

robot:接口入参为图片时如何发送请求

https://www.cnblogs.com/changyou615/p/8776507.html 接口是上传图片&#xff0c;通过F12抓包获得如下信息 由于使用的是RequestsLibrary&#xff0c;所以先看一下官网怎么传递二进制文件参数&#xff0c;https://2.python-requests.org//en/master/user/advanced/#post-multi…

已知两点坐标拾取怎么操作_已知的操作员学习-第3部分

已知两点坐标拾取怎么操作有关深层学习的FAU讲义 (FAU LECTURE NOTES ON DEEP LEARNING) These are the lecture notes for FAU’s YouTube Lecture “Deep Learning”. This is a full transcript of the lecture video & matching slides. We hope, you enjoy this as mu…

缺失值和异常值处理

一、缺失值 1.空值判断 isnull()空值为True&#xff0c;非空值为False notnull() 空值为False&#xff0c;非空值为True s pd.Series([1,2,3,np.nan,hello,np.nan]) df pd.DataFrame({a:[1,2,np.nan,3],b:[2,np.nan,3,hello]}) print(s.isnull()) print(s[s.isnull() False]…