欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Spring day01

程序员文章站 2022-04-09 11:28:56
Spring第一天笔记 1. 说在前面 怎样的架构的程序,我们认为是一个优秀的架构? 我们考虑的标准:可维护性好,可扩展性好,性能。 什么叫可扩展性好? 答:就是可以做到,不断的增加代码,但是可以不修改原来的代码的程序。 如何让程序的可维护性好,可扩展性好呢? 业界有一个公认的标准,高内聚,低耦合。 ......

spring第一天笔记

 

1. 说在前面

怎样的架构的程序,我们认为是一个优秀的架构?

 

我们考虑的标准:可维护性好,可扩展性好,性能。

 

 

什么叫可扩展性好?

答:就是可以做到,不断的增加代码,但是可以不修改原来的代码的程序。

 

 

如何让程序的可维护性好,可扩展性好呢?

业界有一个公认的标准,高内聚,低耦合。

 

高内聚:就是尽量将代码写在与之功能描述一致的模块中。如user表的操作写在userdao里面就不用写在非userdao的类里面。

 

低耦合:就是尽量减少类与类之间的直接关系。(重点)

 

spring框架就是通过ioc(控制反转)实现程序的解耦。从而提高程序的维护性和扩展性。

 

 

 

 

2. spring概述

 

2.1. spring是什么

spring是一个javaee轻量级一站式开发框架。

 

javaee: 就是用于开发b/s的程序。(企业级)

轻量级:使用最少代码启动框架,然后根据你的需求选择,选择你喜欢的模块使用。

重量级:早期有的ejb,开发一个helloworld程序都需要引入ebj的全部模块

一站式:提供了,表示层(struts2/springmvc),服务层,持久层的所有支持。

 

2.2. spring框架出现的背景

在世界第一套有java官方sun公司推出的企业级开发框架ejb出现后,瞬间风靡全球。被各大公司所应用。

 

spring之父,rod jonhson是一个音乐博士,在sun公司的大力推广下,也成为ejb框架的使用者。

 

在深入研究完ejb框架(由sun主导开发的一个javaee开发框架),无法接收这么一个框架被吹成世界第一,具体查看他吐槽ejb的书《expert one on one j2ee design and development

 

其中突出被他吐槽最厉害的一个点就ejb的重量级,就是只要使用ejb里面任何一个组件。都要将所有ejbjar导进去。

 

于是他就提供了一个他的解决方案:轻量级的一站式企业开发框架。

 

那么什么是轻量级呢?

就是除内核模块(4jar),其他模块由开发者*选择使用同时支持整合其他框架。

 

也可以称为就是可插拔式开发框架,像插头和插座一样,插上就用。这就是spring框架核心理念。(ioc

 

 

那么什么是一站式呢?

就是spring框架提供涵盖了javaee开发的表示层,服务层,持久层的所有组件功能。也就是说,原则上,学完一套spring框架,不用其他框架就可以完成网站一条流程的开发。

 

如图:

Spring day01

2.3. spring框架的作用

根据以上章节的描述。spring是一个javaee一站式的开发框架。它提供的功能涵盖了javaee程序中的表示层,服务层,持久层功能组件。这意味着,使用了spring框架,一个框架就可以满足整个javaee程序的开发。

 

spring框架,更加强调的是它的轻量级(模块的可插拔)!!也就是说,除了内核以外模块,如果你不想使用可以不用,它能够整合任何第三方的框架。

 

所以,在现实开发中,spring主要用于整合其他框架

 

2.4. 总结

  1. spring是一个一站式的企业级(javaee)开发框架,意味着,仅仅使用一个spring框架就可以满足javaee开发的表示层,服务层,持久层的开发。
  2. spring强调的理念是,轻量级。意味着spring提供的功能模块,除了内核模块以外,开发人员可以选择性使用。
  3. 所以,spring框架在现实开发中,主要的功能用于整合,各种开发来开发项目。

2.5. spring框架包

spring官方网站

2.5.1. 框架包的下载

spring官方提供的maven方式的项目下载。

 

但是基于简单入门的原则,我们要通过导入包的方式来学习。需要下载框架的zip

路径为:

 

2.5.2. 目录说明

--根目录

 Spring day01

--类库规则

 Spring day01

 

--包说明

包名

说明

spring-aop-4.3.2.release.jar

实现了aop的支持

spring-aspects-4.3.2.release.jar

aop框架aspects支持包

spring-beans-4.3.2.release.jar

内核支撑包,实现了处理基于xml对象存取

spring-context-4.3.2.release.jar

内核支撑包,实现了spring对象容器

spring-context-support-4.3.2.release.jar

容器操作扩展包,扩展了一些常用的容器对象的设置功能

spring-core-4.3.2.release.jar

内核支撑包,spring的内核

spring-expression-4.3.2.release.jar

内核支撑包,实现了xmlspring表达式的支持

spring-instrument-4.3.2.release.jar

提供了一些类加载的的工具类

spring-instrument-tomcat-4.3.2.release.jar

提供了一些tomcat类加载的的工具类,实现对应tomcat服务的调用

spring-jdbc-4.3.2.release.jar

springjdbc实现包,一个操作数据库持久层的子框架

spring-jms-4.3.2.release.jar

集成jms的支持,jmsjava消息服务。

spring-messaging-4.3.2.release.jar

集成messaging api和消息协议提供支持

spring-orm-4.3.2.release.jar

orm框架集成包,实现了hibernateibatisjdo的集成。

spring-oxm-4.3.2.release.jar

spring oxm对主流o/x mapping框架做了一个统一的抽象和封装。就是对应xml读写框架的支持

spring-test-4.3.2.release.jar

spring集成junit测试

spring-tx-4.3.2.release.jar

事务代理的支持

spring-web-4.3.2.release.jar

springweb通用模块

spring-webmvc-4.3.2.release.jar

springmvc子框架

spring-webmvc-portlet-4.3.2.release.jar

spring对门户技术(portlet)的支持

spring-websocket-4.3.2.release.jar

springwebsocket的支持

3. 入门示例

spring之所以可以实现模块的可插拔是支持依赖注入,所谓的依赖注入/控制反转就是不用new就可以创建对象。

 

 

需求:使用spring框架不用new创建一个对象。

 

3.1. 配置流程图

 Spring day01

 

  1. 创建一个普通的类。
  2. 创建一个spring配置文件,用于描述类与类之间的关系。
  3. 创建applicationcontext容器对象根据spring配置文件的描述,将对象创建并且放在spring容器里面。
  4. 使用applicationcontext容器对象的getbean方法,调用spring容器里面的对象。

 

3.2. 配置步骤说明

  1. 导入包
  2. 创建一个普通的类
  3. 创建一个spring配置文件(去官方文档上拷贝约束)
  4. 编写一个测试类,使用applicationcontext的子类对象根据配置文件创建容器。并且在容器里面获得创建的对象

 

3.3. 配置步骤

3.3.1. 第一步:搭建环境

1.创建一个java项目

 Spring day01

--选中创建

 Spring day01

--创建目录结构

 Spring day01

2.导入包,string的基础支撑包和依赖的日志包复制到lib文件下,并且加入项目中

---导入spring基础支撑包

 Spring day01

--导入spring依赖的日志包

 Spring day01

3.3.2. -第二步:创建配置文件

  1. 在项目的src下面创建配置文件applicationcontext.xml完成配置文件的约束,约束查找位置(spring框架/docs/spring-framework-reference/html/beans.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">

 

 

</beans>

3.3.3. 第三步:创建对象到容器里面

  1. 创建一个类

package com.zj.service;

 

public class helloworldservice {

 

public void say(){

system.out.println("--你好世界!--");

}

 

}

 

  1. applicationcontext.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" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd ">

   

   <!--

     <bean>标签:用于声明一个类,在启动spring框架的时候根据该配置的类创建对象到容器里面

     name

    -->

   <bean name="helloworldservice" class="com.zj.service.helloworldservice"></bean>

</beans>

  1. 测试使用getbean获得容器中的对象。

package com.zj.test;

 

import org.junit.test;

import org.springframework.context.support.classpathxmlapplicationcontext;

 

import com.zj.service.helloworldservice;

 

public class helloworldservicetest {

 

@test

public void say(){

//创建一个applicationcontext对象,根据xml配置创建一个对象

//直接读取springsrc目录下的配置文件的子类是classpathxmlapplicationcontext

applicationcontext context=new classpathxmlapplicationcontext("applicationcontext.xml");

helloworldservice helloworldservice = context.getbean("helloworldservice", helloworldservice.class);

//调用方法

helloworldservice.say();

}

}

 

通过代码得到,spring框架果然不用new就可以创建对象。

3.4. eclipse提示xml文件语法

1.联网

2.手动关联约束window->preferences

Spring day01

3.5. spring容器的两个实现

 Spring day01

 

classpathxmlapplicationcontext:通过classpath路径直接获得加载的xml文件(推荐使用)

filesystemxmlapplicationcontext通过文件路径来获得加载的xml文件。

 Spring day01

3.6. applicationcontext类图结构图(了解)

spring框架容器对象的继承体系

 Spring day01

 

通过结构图可以看到,spring容器*接口是beanfactory,applicationcontext是它的子接口。

 

4. springioc控制反转依赖注入-重点-spring核心之一

ioc:inverse of control(控制反转):

读作“反转控制”,更好理解,不是什么技术,而是一种设计思想,好比于mvc。就是将原本在程序中手动创建对象的控制权,交由spring框架来管理。

正控:若调用者需要使用某个对象,其自身就得负责该对象的创建。

反控:调用者只管负责从spring容器中获取需要使用的对象,不关心对象的创建过程,也就是把创建对象的控制权反转给了spring框架。

dont call me ,ill call you

di:dependency injection(依赖注入)

从字面上分析:

ioc:指将对象的创建权,反转给了spring容器;

di :指spring创建对象的过程中,将对象依赖属性(简单值,集合,对象)通过配置设值给该对象。

iocdi其实是同一个概念的不同角度描述,di相对ioc而言,明确描述了“被注入对象依赖ioc容器配置依赖对象”。

 

container:容器,在生活中容器就是一种盛放东西的器皿,从程序设计角度看作是装对象的对象,因为存在对对象的存入、取出等操作,所以容器还要管理对象的生命周期。

 Spring day01

4.1. ioc(控制反转)的概述

spring号称是一个可以实现模块可插拔的javaee开发框架。那么它是如何实现程序的可插拔的呢?

 

实现程序可以插拔的核心理念就是,控制反转(inversion of control,英文缩写为ioc

 

 

所谓的控制反转,就是将代码的调用权从调用方转移给被调用方(服务提供方)。

 

如图所示:

  1. 强耦合调用方式

a调用b的对象修改为c类的对象,修改的是调用方的代码,所以我们认为代码的调用权在调用方。

 Spring day01

 

 

  1. 基于ioc(控制反转)的调用方式

 

将上图的需求,修改为使用ioc的调用代码方式。就是将代码的控制权从调用方修改为被调用方,意味着,代码的调用权转移给被调用方(我们也称为服务方),不用修改调用方的的代码

只要修改配置文件就实现对象的切换

 

如下图:将a类调用b类的对象修改为c类的对象,修改的是被调用方的配置文件的代码,所以代码的调用权转移到了被调用方。通过控制反转,我们可以实现增加模块或者移除模块统一由配置文件关联,增加或者移除模块,配置xml配置文件即可。

 

我们将代码的调用权(控制权)调用方转移给被调用方(服务提供方)的设计模式称为控制反转(ioc

 

 Spring day01

 

根据上图可以的得出,实现一个ioc的框架,必须要解决两个问题:

1.被调用方(服务方),在程序启动时就要创建好对象,放在一个容器里面。

2.调用方使用一个接口或类的引用(不用使用new),就可以创建获得对象。

 

我们将这种不用new,而是根据接口或者类的引用就可以从被调用的容器里获得创建的对象的方式称为依赖注入。

 

所以,控制反转(ioc),就是依赖注入加上面向接口的编程思想的实现。

 

在这里,我们首先抓住一个重点:spring之所以可以实现可插拔程序,是实现了不用new,使用类或接口就可以获得获得对象!

 

4.2. 项目目录结构

 Spring day01

4.3. 示例代码

4.3.1. customerservice接口代码

package cn.zj.spring.service;

 

public interface customerservice {

/**

 * 保存方法

 */

public void save();

}

 

 

4.3.2. customerserviceimpl子类

package cn.zj.spring.service.impl;

 

import cn.zj.spring.service.customerservice;

 

public class customerserviceimpl implements customerservice {

 

@override

public void save() {

system.out.println("-保存客户-customerserviceimpl");

}

 

}

 

 

4.3.3. customerserviceimpl2子类

package cn.zj.spring.service.impl;

 

import cn.zj.spring.service.customerservice;

 

public class customerserviceimpl2 implements customerservice {

 

@override

public void save() {

system.out.println("-保存客户-customerserviceimpl2");

}

 

}

 

 

4.3.4. customerclient类(调用方)

package cn.zj.spring.client;

 

import cn.zj.spring.service.customerservice;

 

public class customerclient {

 

//1.声明一个父接口的引用

private customerservice customerservice;

 

//2.使用set方法注入对象,我们将通过方法注入的对象的方式称为依赖注入

public void setcustomerservice(customerservice customerservice) {

this.customerservice = customerservice;

}

 

public void save(){

//调用服务端的方法

customerservice.save();;

}

 

}

 

4.3.5. 配置文件applicationcontext.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"

    xsi:schemalocation="http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd">

<!-- <bean>标签:用于声明一个类,在启动spring框架的时候根据该配置的类创建对象到容器里面 name -->

<!-- <bean name="customerserviceimpl" class="cn.zj.spring.service.impl.customerserviceimpl"></bean> -->

   <!--

   customerserviceimpl修改为customerserviceimpl2的配置

    -->

<bean name="customerserviceimpl" class="cn.zj.spring.service.impl.customerserviceimpl2"></bean>

 

<bean name="customerclient" class="cn.zj.spring.client.customerclient">

<!-- 对应set方法关联的对象 customerservice

         name:关联对应的set方法,关联规则:xxx对应setxxx();如:customerservice() 对应setcustomerservice()

         ref:指向容器中的对象

 -->

<property name="customerservice" ref="customerserviceimpl"></property>

</bean>

 

</beans>

 

4.3.6. 测试代码

package cn.zj.spring.test;

 

 

import org.junit.test;

import org.springframework.context.applicationcontext;

import org.springframework.context.support.classpathxmlapplicationcontext;

 

import cn.zj.spring.client.customerclient;

 

public class clienttest {

@test

public void testsave() throws exception {

applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml");

customerclient customerclient = context.getbean("customerclient", customerclient.class);

// 调用方法

customerclient.save();

}

}

 

4.3.7. 7.测试结果

 Spring day01

 

 

5. 标签说明

5.1. alias标签

作用:为已配置的bean设置别名

 

<?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">

        

<bean id="user" name="test" class="cn.zj.spring.pojo.user"/>

<!--

标签alias: 为已配置的bean设置别名

属性name: 必要属性, 代表为哪一个bean配置别名,

此属性的值为其他bean标签的idname属性值

属性alias: 必要属性, 代表新命名的别名是什么

 -->

<alias name="user" alias="user1"/>

 

</beans>

 

--测试代码

import org.springframework.context.applicationcontext;

import org.springframework.context.support.classpathxmlapplicationcontext;

 

import cn.zj.entity.user;

 

public class test {

public static void main(string[] args) {

// 读取spring配置文件

applicationcontext context = new classpathxmlapplicationcontext(

"applicationcontext.xml");

 

// 通过id获取user对象

user user = (user) context.getbean("user");

// 测试对象

system.out.println(user);

system.out.prntln("=====================================");

// 通过alias获取user对象

user = (user) context.getbean("user1");

// 测试对象

system.out.println(user);

}

}

 

 

5.2. bean标签的配置

5.2.1.  bean标签作用

用于声明一个类,在启动spring框架的时候根据该配置的类创建对象到容器里面

5.2.2. 属性说明

<!-- <bean>标签:用于声明一个类,在启动spring框架的时候根据该配置的类创建对象到容器里面

     name:设置对象名(唯一标识符),可以有多个名称,每个名称用逗号隔开 :  name1,name2

     id:设置对象名(唯一标识符,功能和name一样)

     class:用于指定对象对应的类名

     scope:用于设置的对象的作用范围,可选参数如下:

        *singleton:单例(默认)

                对象出生:当程序加载配置文件创建容器时,创建

                对象活着:只要容器还在,一直活着

                对象死亡:应用停止,容器销毁,对象死亡

        *prototype:多例(原型对象)

                对象出生:当程序加载配置文件创建容器时,创建

                对象活着:只要对象被使用,一直活着

                对象死亡:对象长时间不用,会被java垃圾回收机制回收

        *reqeust:web项目中,spring将创建的对象放在request作用域中

        *session:web项目中,spring将创建的对象放在session作用域中

        *globalsession:web项目中,应用域portlet环境,如果没有protlet环境相当于session

    init-method:设置创建对象的时候,调用初始化方法

    destroy-method:设置对象被回收时,调用注销的方法

    

  -->

<bean name="customerserviceimpl"    class="com.zj.spring.service.impl.customerserviceimpl"></bean>

 

 

5.2.3. bean作用范围

<bean id="" class="" scope="作用域"/>

singleton

 

 单例 ,在spring ioc容器中仅存在一个bean实例 (默认的scope

prototype

多例 ,每次从容器中调用bean时,都返回一个新的实例,即每次调用getbean()时 ,相当于执行new xxxbean()

request

用于web开发,将bean放入request范围 ,request.setattribute("xxx") , 在同一个request 获得同一个bean

 

session

用于web开发,将bean 放入session范围,在同一个session 获得同一个bean

 

在开发中主要使用 scope="singleton"scope="prototype"

对于mvc中的action/controller使用prototype类型,其他使用singleton

<!--

<bean id="" class="" scope="作用域"/>

scope : 配置当前bena的范围大小

 

singleton: 单例 ,在spring ioc容器中仅存在一个bean实例 (默认的scope)

prototype: 多例 ,每次从容器中调用bean时,都返回一个新的实例,即每次调用getbean()时 ,相当于执行new xxxbean()

 -->

 

<bean id="somebean" class="cn.zj.spring.pojo.somebean" scope="prototype"></bean> 

 

web开发的三层架构中

 

web:一般都是多例

service :单例

dao :单例

 

5.3. 实例化bean的四种方式

5.3.1. 构造器实例化(无参数构造器),最标准,使用最多。

public class somebean1 {

public somebean1() {

system.out.println("somebean.somebean1()");

}

}

配置文件

<!-- ①.构造器实例化(无参数构造器),最标准,使用最多。 -->

<bean id="somebean1" class="cn.zj.spring.pojo.somebean1"></bean>

 

 

5.3.2. 通过静态方法工厂创建(了解)

--静态工厂类

somebean2/somebean2facotry

public class somebean2 {

public somebean2() {

system.out.println("somebean.somebean2()");

}

}

public class somebean2facotry {

//静态工厂方法

public static somebean2 getsomebean2() {

system.out.println("执行静态工厂方法");

return new somebean2();

}

}

 

--静态工厂配置

<!-- ②.静态工厂方法实例化:解决系统遗留问题 -->

<bean id="somebean2" class="cn.zj.spring.pojo.somebean2facotry"

factory-method="getsomebean2"></bean>

 

5.3.3. 通过实体工厂创建(了解)

--实体工厂

public class somebean3 {

public somebean3() {

system.out.println("somebean.somebean3()");

}

}

public class somebean3facotry {

//实例工厂方法

public somebean3 getsomebean3() {

system.out.println("执行实例工厂方法");

return new somebean3();

}

}

--配置方式

<!-- ③.实例工厂方法实例化:解决系统遗留问题 -->

<!-- 1.配置工厂bean -->

<bean id="somebean3factory" class="cn.zj.spring.pojo.somebean3facotry"></bean>

<!-- 2.配置bena

factory-bean : 创建bean的工厂对象对应的 id

factory-method : 工厂bean中返回 bean对象的方法

 -->

<bean id="somebean3" factory-bean="somebean3factory" factory-method="getsomebean3"/>

 

5.3.4. 实现factorybean接口实例化:实例工厂变种(了解)

实现factorybean接口,mybatisspring集成就是使用的这种方式

此种方式,如果没有使用bean对应的对象,spring就不会自动创建,只有在使用的时候spring才会创建对应的对象

public class somebean4 {

public somebean4() {

system.out.println("somebean4.somebean4()");

}

}

public class somebean4objectfactory implements factorybean<somebean4>{

 

//返回的泛型类型对应的对象

@override

public somebean4 getobject() throws exception {

somebean4 bean4 = new somebean4();

return bean4;

}

@override

public class<?> getobjecttype() {

return null;

}

 

}

--配置方式

<!-- ④.实现factorybean接口实例化:实例工厂变种:集成其他框架使用:localsessionfactorybean -->

<bean id="somebean4" class="cn.zj.domian.somebean4objectfactory"></bean>

5.4. 初始化和销毁方法

比如datasource,sessionfactory最终都需要关闭资源:bean销毁之前,都要调用close方法.

<bean id="somebean" class="......"

    init-method="该类中初始化方法名" destroy-method="该类中销毁方法名">

</bean>

init-methodbean生命周期初始化方法,对象创建后就进行调用

destroy-method:容器被销毁的时候,如果bean被容器管理,会调用该方法。

 

default-init-method

 

分析原理:

如果beanscope="prototype",那么容器只负责创建和初始化,它并不会被spring容器管理。交给用户自己调用.

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

     

     default-init-method="init">

<!-- 配置全局初始化方法,如果有100个bean中都有init方法,那么只要spring容器一启动,bean对象一创建

默认对象中只要有 init方法,都全部会执行:一般不建议使用

 -->

<!--

init-method : 配置初始化方法名

destroy-method : 配置销毁方法名

 -->

<bean id="somebean" class="cn.zj.spring.pojo.somebean" 

init-method="init"

destroy-method="destory"></bean> 

</beans>

6. spring依赖注入 di

di:dependency injection(依赖注入)

从字面上分析:

ioc:指将对象的创建权,反转给了spring容器;

di :指spring创建对象的过程中,将对象依赖属性(简单值,集合,对象)通过配置设值给该对象。

iocdi其实是同一个概念的不同角度描述,di相对ioc而言,明确描述了“被注入对象依赖ioc容器配置依赖对象”。

 

所谓的依赖注入,就是属性不创建对象,通过配置文件的配置将spring容器里面的对象注入给对应的属性

 

依赖注入有四种方式

 

6.1. setter注入,(属性注入

1.setter注入,(也可以称之为属性注入)

使用setter注入:

1,使用bean元素的<property>子元素设置;

    1,简单类型值,直接使用value赋值;

    2,引用类型,使用ref赋值;

    3,集合类型,直接使用对应的集合类型元素即可。

2,spring通过属性的setter方法注入值;

3,在配置文件中配置的值都是string,spring可以自动的完成类型的转换

 

public class employee {

private integer age;

private string name;

private department dept;

public integer getage() {

return age;

}

public void setage(integer age) {

this.age = age;

}

public string getname() {

return name;

}

public void setname(string name) {

this.name = name;

}

public department getdept() {

return dept;

}

public void setdept(department dept) {

this.dept = dept;

}

@override

public string tostring() {

return "employee [age=" + age + ", name=" + name + ", dept=" + dept + "]";

}

}

public class department {

private integer id;

private string name;

public integer getid() {

return id;

}

public void setid(integer id) {

this.id = id;

}

public string getname() {

return name;

}

public void setname(string name) {

this.name = name;

}

}

 

<?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">

 

<!-- 员工 -->

<bean id="employee" class="cn.zj.spring.pojo.employee" >

<!-- setter方法注入: 属性注入

<property name="" value="">

name : 属性名称

value : 基本数据类型+string类型的值注入

ref : 引用类型(对象类型)的注入

value 和ref 只能二选一

-->

<property name="age" value="18"></property>

<property name="name" value="jinken"></property>

<property name="dept" ref="dept"></property>

</bean>

<!-- 部门 -->

<bean id="dept" class="cn.zj.spring.pojo.department" ></bean>

 

</beans>

6.2. 构造器注入

<!--

1,默认情况下,constructor-arg的顺序就是构造器参数的顺序

2,3中调整构造器顺序:

   1.index:在构造器中的参数索引(从0开始)

   2.type:在构造器中的参数的类型

   3.name:在构造器中按照构造器的参数名字设置值

   ====================

使用哪种注入方式比较好(setter?构造器?)?

1,如果一个类必须依赖另一个类才能正常运行,用构造器;

2,但是构造器的参数如果过多,构造器很难看;

3,更多的还是使用setter注入;

4,可以使用@required标签来要求一个属性必须注入

 -->

 

<!-- 员工 -->

<bean id="employee" class="cn.zj.spring.pojo.employee" >

<!-- constructor注入 -->

<constructor-arg index="1"  value="乔峰"/>

<constructor-arg index="0" value="19"/>

<constructor-arg  ref="dept"/>

</bean>

<!-- 部门 -->

<bean id="dept" class="cn.zj.spring.pojo.department" ></bean>

 

6.3. p命名空间注入

使用p命名空间注入先在约束上面引入 p标签(红色部分)

<?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"

    xsi:schemalocation="http://www.springframework.org/schema/beans

        http://www.springframework.org/schema/beans/spring-beans.xsd">

        

  <!-- 配置部门 -->

  <bean id="department" class="cn.zj.spring.pojo.department"

  p:id="123"

  p:name="销售部"/>

 

  <!-- 配置员工 -->

  <bean id="emp" class="cn.zj.spring.pojo.employee"

  p:id="111"

  p:name="西门吹雪"

  p:dept-ref="department"/>

</beans>

 

6.4. 集合类型值注入

在处理的数据中,

有标量类型=基础数据类型以及包装类+string  -- value属性

也有spring容器里面的对象  --ref属性

还要很多数据jdk内置的数据结构:

  1. 键值对 map properties
  2. 数组
  3. 集合setlist

 

public class collectionbean {

private set<string> set;

private list<string> list;

private string[] array;

private map<string, string> map;

private properties prop; //读取本地 xxx.properties文件(本质就是一个map集合)

}

<bean id="collectionbean" class="cn.gzxst.spring.pojo.collectionbean">

<!-- set集合注入  -->

<property name="set">

<set>

<value>set1</value>

<value>set2</value>

<value>set3</value>

</set>

</property>

<!-- list集合注入  -->

<property name="list">

<list>

<value>list1</value>

<value>list2</value>

<value>list3</value>

</list>

</property>

<!-- 数组注入 -->

<property name="array">

<array>

<value>aa</value>

<value>bb</value>

<value>cc</value>

</array>

</property>

<!-- map集合注入 -->

<property name="map">

<map>

<entry key="key1" value="乔峰"/>

<entry key="key2" value="虚竹"/>

<entry key="key3" value="段誉"/>

</map>

</property>

<!-- properties注入 -->

<property name="prop">

<props>

<prop key="pro1">provlaue1</prop>

<prop key="pro2">provlaue2</prop>

<prop key="pro3">provlaue3</prop>

</props>

</property>

</bean>

7. 获得properties文件的值

spring配置文件支持通过xxx.properties文件的key获得对应的值。实现该功能是通过

通过${key}来获得properties文件对应key的值

 

使用spring读取配置文件必须导入新的命名空间 context

导入命名空间方法

将命名空间和约束重新拷贝一份,将对于的全部替换成 context,然后关联context本地schema约束

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

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

xmlns:p="http://www.springframework.org/schema/p"

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

    http://www.springframework.org/schema/context

    http://www.springframework.org/schema/context/spring-context.xsd

    ">

 

7.1. 使用spring创建阿里巴巴 druid连接池,读取配置文件

7.1.1. 拷贝mysql驱动包和druid连接池jar包到项目中

 

 

7.1.2. 创建 db.properites

jdbc.driverclassname=com.mysql.jdbc.driver

jdbc.url=jdbc:mysql://localhost:3306/jdbcdemo

jdbc.username=root

jdbc.password=root

jdbc.maxactive=10

 

 

7.1.3. applicationcontext.xml配置

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

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

xmlns:p="http://www.springframework.org/schema/p"

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

    http://www.springframework.org/schema/context

    http://www.springframework.org/schema/context/spring-context.xsd

    ">

    <!-- 读取项目的配置文件 -->

<context:property-placeholder location="classpath:db.properties" />

<!-- 创建连接池对象 -->

<bean id="datasource" class="com.alibaba.druid.pool.druiddatasource" init-method="init" destroy-method="close">

<property name="driverclassname"

value="${jdbc.driverclassname}" />

<property name="url" value="${jdbc.url}" />

<property name="username" value="${jdbc.username}" />

<property name="password" value="${jdbc.password}" />

<property name="maxactive" value="${jdbc.maxactive}" />

</bean>

</beans>

7.1.4. 测试代码

@test

public void testsave() throws exception {

applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml");

 

datasource datasource = context.getbean(datasource.class, "datasource");

connection conn = datasource.getconnection();

system.out.println("数据库连接对象:"+conn);

}

7.1.5. 效果

 

8. 模拟注册功能

此功能重点在于将每一层对象的创建交给spring管理,对象之间的依赖关系交给spring来维护

8.1. dao层接口以及实现代码

public interface userdao {

void insert(user user);

}

public class userdaoimpl implements userdao {

@override

public void insert(user user) {

system.out.println("注册的dao方法执行");

}

}

8.2. service层接口以及实现代码

public interface userservice {

void register(user user);

}

public class userserviceimpl implements userservice {

/*private userdao dao = new userdaoimpl(); 传统做法

 * 现在交给spring管理,使用spring的setter方法注入

 *因为要交给spring的setter方法注入,所以(必须)提供set方法

*/

private userdao dao;

 

@override

public void register(user user) {

dao.insert(user);

}

//因为要用

public void setdao(userdao dao) {

this.dao = dao;

}

}

8.3. web表现层实现代码

public class userservlet {

/* 传统做法

 * private userservice service = new userserviceimpl();

 * 现在交给spring管理,使用spring的setter方法注入

 *  因为要交给spring的setter方法注入,所以(必须)提供set方法

 */

private userservice service;

 

public void register(user user) {

 

service.register(user);

}

public void setservice(userservice service) {

this.service = service;

}

}

8.4. applicationcontext.xml文件配置代码(重点),一定要掌握每层的配置,和每层之间对象的依赖关系的维护

!-- 配置 项目的bean -->

 

<!-- 配置dao层 -->

<bean id="userdao" class="cn.zj.spring.dao.impl.userdaoimpl"/>   

 

<!-- 配置service层 -->

<bean id="userservice" class="cn.zj.spring.service.impl.userserviceimpl">

<!-- di: 依赖注入,使用 setter注入 dao层对象-->

<property name="dao" ref="userdao"/>

</bean>

<!-- 配置web层/表现层  -->

<bean id="userservlet" class="cn.zj.spring.controller.userservlet">

<!-- di : 依赖注入,使用setter注入 service层对象 -->

<property name="service" ref="userservice"/>

</bean>

8.5. 测试代码

@test

public void testregister() throws exception {

//创建用户对象:模拟接受用户参数,封装对象的过程

user user = new user();

user.setusername("张三");

user.setpassword("admin");

applicationcontext context = new classpathxmlapplicationcontext("applicationcontext.xml");

//获取表现层的servlet即可

userservlet userservlet = context .getbean("userservlet", userservlet.class);

//执行注册操作

userservlet.register(user);

}

 

 

 

9. 小结

  1. 优秀的项目架构的特点

(1) 高内聚

① 项目分层开发(每次处理各自的任务,职责分明)

(2) 低耦合

① 对象与对象之间有不直接产生依赖(不直接new对象)

  1. 低耦合的解决方案

(1) 开发者自己底层使用反射进行封装相关代码

(2) 使用优秀的框架 spring

  1. 什么是spring

(1) 轻量级一站式框架

(2) 轻量级

① spring20个模块,只需要四个模块即可启动spring框架,其他模块按需引入即可

(3) 一站式

① web开发的三层架构 ,web层、service层,dao层 全部使用spring框架完成

  1. spring如何实现解耦

(1) ioc :控制反转

① 将对象创建权交给spring管理

② 负责对象生命周期(有效期)

③ 初始化方法,销毁方法

④ ioc创建对象实例有四种方式

1) 直接使用无参数构造函数-推荐

  1. <bean id = ‘’’ class =””>

2) 使用静态工厂创建bean

3) 使用实例工厂创建bean

4) 使用变种实例工厂,工厂类实现 factorybean接口

(2) di :依赖注入

① 将对象的属性通过spring赋值

② setter方法(属性)注入

③ 构造器注入

④ p命名空间注入

⑤ 支持值类型,引用类型和支持各种集合数据类型的注入

  1. spring读取 .properteis配置文件
  2. 综合案例-模拟注册功能-使用spring管理对象