Spring总结(一)

1.核心

spring核心有两个IOC(控制反转),AOP(面向切面)

2.理解

在我的理解以前的mvc之间的各个类都是互相耦合的,举个例子:在service里面new出dao来进行各种调用。这样的话每个都是相互依赖的关系。

为了解决这种情况,就需要一个中间的第三方容器来解耦,而这就是spring的用处了

3.导入jar包

在有原来的各个类主动new出依赖类,到变成被动的由第三方容器主动注入,这就是IOC,而注入的过程就是依赖注入了

4+1:4个核心(beans、core、context、expression) + 1个依赖(commons-loggins...jar)

4.bean.xml配置

位置:任意,开发中一般在classpath下(src)

l 名称:任意,开发中常用applicationContext.xml

l 内容:添加schema约束

约束文件位置:spring-framework-3.2.0.RELEASE\docs\spring-framework-reference\html\ xsd-config.html


<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"

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.xsd">

<!-- 配置service

<bean> 配置需要创建的对象

id :用于之后从spring容器获得实例时使用的

class :需要创建实例的全限定类名

-->

<bean id="userServiceId" class="com.itheima.a_ioc.UserServiceImpl"></bean>

</beans>

使用方法


Test

public void demo02(){

//从spring容器获得

//1 获得容器

String xmlPath = "com/itheima/a_ioc/beans.xml";

ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);

//2获得内容 --不需要自己new,都是从spring容器获得

UserService userService = (UserService) applicationContext.getBean("userServiceId");

userService.addUser();

}

5.依赖注入

示例代码


<beans xmlns="http://www.springframework.org/schema/beans"

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.xsd">

<!--

模拟spring执行过程

创建service实例:BookService bookService = new BookServiceImpl() IoC  <bean>

创建dao实例:BookDao bookDao = new BookDaoImpl() IoC

将dao设置给service:bookService.setBookDao(bookDao); DI   <property>

<property> 用于进行属性注入

name: bean的属性名,通过setter方法获得

setBookDao ##> BookDao  ##> bookDao

ref :另一个bean的id值的引用

-->

<!-- 创建service -->

<bean id="bookServiceId" class="com.itheima.b_di.BookServiceImpl">

<property name="bookDao" ref="bookDaoId"></property>

</bean>

<!-- 创建dao实例 -->

<bean id="bookDaoId" class="com.itheima.b_di.BookDaoImpl"></bean>

</beans>

@Test

public void demo01(){

//从spring容器获得

String xmlPath = "com/itheima/b_di/beans.xml";

ApplicationContext applicationContext = new ClassPathXmlApplicationContext(xmlPath);

BookService bookService = (BookService) applicationContext.getBean("bookServiceId");

bookService.addBook();

}

小结:

先是在xml里面配置通过property标签进行配置,前者是setter方法里面对应的变量名,后者是dao的bean的id,两者进行映射

6.Bean的三种创建方式

默认构造


<bean id="" class="">  必须提供默认构造

静态工厂

l 常用与spring整合其他框架(工具)

l 静态工厂:用于生成实例对象,所有的方法必须是static


<bean id=""  class="工厂全限定类名"  factory-method="静态方法">

工厂


public class MyBeanFactory {

/**

* 创建实例

* @return

*/

public static UserService createService(){

return new UserServiceImpl();

}

}

.实例工厂

l 实例工厂:必须先有工厂实例对象,通过实例对象创建对象。提供所有的方法都是“非静态”的。

工厂


/**

* 实例工厂,所有方法非静态

*

*/

public class MyBeanFactory {

/**

* 创建实例

* @return

*/

public UserService createService(){

return new UserServiceImpl();

}

}

Xml配置

示例


<!-- 创建工厂实例 -->

<bean id="myBeanFactoryId" class="com.itheima.c_inject.c_factory.MyBeanFactory"></bean>

<!-- 获得userservice

* factory-bean 确定工厂实例

* factory-method 确定普通方法

-->

<bean id="userServiceId" factory-bean="myBeanFactoryId" factory-method="createService"></bean>

作用域scope

singleton 单例,默认值。

prototype 多例,每执行一次getBean将获得一个实例。

7.注入的几种方式:

构造方法注入

首先呢,domain里的类得有构造方法

如:


public class User {

private Integer uid;

private String username;

private Integer age;

public User(Integer uid, String username) {

super();

this.uid = uid;

this.username = username;

}

public User(String username, Integer age) {

super();

this.username = username;

this.age = age;

}

然后在xml进行配置


<!-- 构造方法注入

* <constructor-arg> 用于配置构造方法一个参数argument

name :参数的名称

value:设置普通数据

ref:引用数据,一般是另一个bean id值

index :参数的索引号,从0开始 。如果只有索引,匹配到了多个构造方法时,默认使用第一个。

type :确定参数类型

例如:使用名称name

<constructor-arg name="username" value="jack"></constructor-arg>

<constructor-arg name="age" value="18"></constructor-arg>

例如2:【类型type 和  索引 index】

<constructor-arg index="0" type="java.lang.String" value="1"></constructor-arg>

<constructor-arg index="1" type="java.lang.Integer" value="2"></constructor-arg>

-->

<bean id="userId" class="com.itheima.f_xml.a_constructor.User" >

<constructor-arg index="0" type="java.lang.String" value="1"></constructor-arg>

<constructor-arg index="1" type="java.lang.Integer" value="2"></constructor-arg>

</bean>

Sette方法注入

这个就是之前在依赖注入里讲到的那种。

集合注入


<!--

集合的注入都是给<property>添加子标签

数组:<array>

List:<list>

Set:<set>

Map:<map> ,map存放k/v 键值对,使用<entry>描述

Properties:<props>  <prop key=""></prop>  【】

普通数据:<value>

引用数据:<ref>

-->

<bean id="collDataId" class="com.itheima.f_xml.e_coll.CollData" >

<property name="arrayData">

<array>

<value>DS</value>

<value>DZD</value>

<value>屌丝</value>

<value>屌中屌</value>

</array>

</property>

<property name="listData">

<list>

<value>于嵩楠</value>

<value>曾卫</value>

<value>杨煜</value>

<value>曾小贤</value>

</list>

</property>

<property name="setData">

<set>

<value>停封</value>

<value>薄纸</value>

<value>关系</value>

</set>

</property>

<property name="mapData">

<map>

<entry key="jack" value="杰克"></entry>

<entry>

<key><value>rose</value></key>

<value>肉丝</value>

</entry>

</map>

</property>

<property name="propsData">

<props>

<prop key="高富帅">嫐</prop>

<prop key="白富美">嬲</prop>

<prop key="男屌丝">挊</prop>

</props>

</property>

</bean>

 ps:由于晚上打的,时间不够,就直接复制了代码了= =!

时间: 2024-10-14 08:02:04

Spring总结(一)的相关文章

Spring事务管理(详解+实例)

写这篇博客之前我首先读了<Spring in action>,之后在网上看了一些关于Spring事务管理的文章,感觉都没有讲全,这里就将书上的和网上关于事务的知识总结一下,参考的文章如下: Spring事务机制详解 Spring事务配置的五种方式 Spring中的事务管理实例详解 1 初步理解 理解事务之前,先讲一个你日常生活中最常干的事:取钱. 比如你去ATM机取1000块钱,大体有两个步骤:首先输入密码金额,银行卡扣掉1000元钱:然后ATM出1000元钱.这两个步骤必须是要么都执行要么都

SSM整合(spring,spirngmvc,mybatis)

整合思路   准备环境:导入jar包(spring mybatis  dbcp连接池  mysql驱动包 log4j) 工程结构: --------------------------- 1.  整合dao mybatis和spring进行整合   applicationContext-dao.xml 配置: 1.数据源 2.SqlSessionFactory 3.mapper扫描器 创建po以及mapper(通过逆向工程,这里不再演示) 针对综合查询mapper,一般情况会有关联查询,建议自定

Spring Boot 热部署

需要在pom.xml文件中加如下代码: 1 <dependencies> 2 <dependency> 3 <groupId>org.springframework.boot</groupId> 4 <artifactId>spring-boot-devtools</artifactId> 5 <optional>true</optional> 6 </dependency> 7 </depe

Spring多线程

Spring是通过TaskExecutor任务执行器来实现多线程和并发编程的.使用ThreadPoolTaskExecutor可实现一个基于线程池的TaskExecutor.而实际开发中任务一般是非阻碍的,即异步的,所以我们要在配置类中通过@EnableAsync开启对异步的支持,并通过在实际执行的Bean的方法中使用@Async注解来声明其是一个异步任务. 实例代码: (1)配置类 package com.lwh.highlight_spring4.ch3.taskexecutor; /**

Spring与JavaMail

JavaMail与Spring集成开发 spring框架集成JavaMail的主要包 2.mail.properties mail.smtp.host=smtp.163.com mail.smtp.auth=true mail.username=15511111111 mail.password=123 [email protected] 3.使用spring配置(applicationContext-mail.xml) <?xml version="1.0" encoding=

Spring Cloud ZooKeeper集成Feign的坑2,服务调用了一次后第二次调用就变成了500,错误:Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is com.n

错误如下: 2017-09-19 15:05:24.659 INFO 9986 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.spring[email protected]56528192: startup date [Tue Sep 19 15:05:24 CST 2017]; root of context hierarchy 2017-09-19 15:05:24.858 INFO 9986 --

Spring rabbitMq 中 correlationId或CorrelationIdString 消费者获取为null的问题

问题 在用Spring boot 的 spring-boot-starter-amqp   快速启动 rabbitMq 是遇到了个坑 消费者端获取不到:correlationId或CorrelationIdString 问题产生的原因 correlationId 的在 spring rabbitmq 2.0 以后 byte方式会被放弃,所以 目前 代码中有些地方没有改过来,应该算一个BUG @SuppressWarnings("deprecation") public class De

Spring框架之Spring AOP

一.基于注解管理的AOP 1.Spring配置文件 <!-- 配置自动扫描包,自动扫描Bean组件,切面类 --> <context:component-scan base-package="com.zhoujian.spring.anno,com.zhoujian.spring.test"> <!-- <context:include-filter type="annotation" expression="org.a

Swagger+ springfox +Spring mvc

简介 Swagger 是一个规范和完整的框架,用于生成.描述.调用和可视化 RESTful 风格的 Web 服务.总体目标是使客户端和文件系统作为服务器以同样的速度来更新.文件的方法,参数和模型紧密集成到服务器端的代码,允许API来始终保持同步.Swagger 让部署管理和使用功能强大的API从未如此简单.这一次我将从零开始搭建一个工程来演示如何在Spring mvc中整合Swagger生成Restful接口文档. 新建工程 我们新建一个Maven工程,并添加Web Facet,工程结构如下图所

Spring Aware

Spring的依赖注入最大亮点就是你所拥有的Bean对Spring容器的存在是没有意识的.即你可以将你的容器换成别的容器,如GOOGLE Guice,这时Bean之间的耦合度降低. 但是在实际的项目中,你不可避免的要用到Spring容器本身的资源,这时你的Bean必须要意识到Spring容器的存在,才能调用Spring所提供的资源,这就是所谓的Spring Aware.其实Spring Aware本来就是Spring设计用来框架内部使用的,如果使用了Spring Aware,那么你的Bean其实