2019-07-05

Spring笔记

[if !supportLists]一、[endif]MVC思想

M: Model 数据模型(User.java)

V: View 视图(页面jsp html ...)

C: Controller 控制器(控制业务逻辑web层以及dao层)


[if !supportLists]二、[endif]框架介绍

Bean管理Spring框架

持久层操作MyBatis Hibernate Spring Data Jpa

servlet开发SpringMVC框架 Struts2

微服务Dubbo (阿里) Spring Boot和Spring Cloud

缓存Redis ...

服务器端框架:数据访问层MyBatis  Hibernate

              视图控制层 SpringMvc

              Bean容器  Spring

[if !supportLists]三、[endif]Spring名词

Spring是众多开源java项目中的一员,基于分层的javeEE应用。

主要核心是IOC(控制反转/依赖注入)与AOP(面向切面)

IOC DI AOP

1、IOC(Inversion of Control,Ioc)控制反转

DI(Dependency Injection,DI)依赖注入

核心容器的主要组件是BeanFactory,工厂模式的实现

使用控制反转IOC思想将应用程序的配置和依赖性规范与实际的应用程序代码分开。

2、Spring-AOP:spring-aop 是 Spring 的另一个核心模块, 在 Spring

中,他是以 JVM 的动态代理技术为基础,然后设计出了一系列的

Aop 横切实现,比如前置通知、返回通知、异常通知等。通过其配

置管理特性,Spring AOP 模块直接将面向切面的编程功能集成到

了 Spring 框架中。所以,可以很容易地使 Spring 框架管理的任

何对象支持 AOP。

[if !supportLists]四、[endif]技术栈

SSH: Struts2 + Spring + Hibernate


SSM: Spring + SpringMVC + MyBatis




[if !supportLists]五、[endif]搭建Spring环境

[if !supportLists]1. [endif]创建maven项目

   在ieda中创建新maven项目,选择maven-archetype-quickstart

[if !supportLists]2. [endif]添加项目依赖

   在当期项目的pom.xml里面插入配置文件

  

org.springframework

spring-context

4.3.9.RELEASE

[if !supportLists]3. [endif]编程测试代码

   在所创建项目的src目录下创建java类文件

package com.shsxt.service;

public class HelloService {

public void hello(){

System.out.println("hello spring");

}

}

[if !supportLists]4. [endif]编写配置文件

在src下面与java同级,创建resources文件,设置成test resources root文件,创建一个xml类型的文件,拷贝官网文档模版,并配置bean到xml中,纳入到spring容器管理。

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

-->

xmlns 即 xml namespace xml 使用的命名空间

xmlns:xsi 即 xml schema instance xml 遵守的具体规范

xsi:schemaLocation 本文档 xml 遵守的规范官方指定

-->

Id代表了关联文件的标记

Class代表了需要关联文件的地址

[if !supportLists]5. [endif]执行单元测试

   通过junit4进行验证,在当前要测试的java文件类上alt+enter;

   选择creat test创建测试文件 @Test


注意事项:先做后理解

如下图设置自动导包,遇到名称一样的包名会提示!




[if !vml]

[endif]


[if !supportLists]六、[endif]IOC容器

IOC: Inversion of Control,缩写为IoC 控制反转


[if !supportLists]七、[endif]手动模拟IOC容器

准备:

[if !supportLists]1. [endif]xml解析(dom4j + xpath)

[if !supportLists]2. [endif]反射

3.

集合(List Map ...)


[if !supportLists]八、[endif]多文件加载

项目配置文件里面的resources文件下可以创建多个xml配置文件,然后由一个主要的配置文件引用,关键字


[if !supportLists]九、[endif]IOC中实例化bean的3中方式

[if !supportLists]1.[endif]构造器(默认 80%)

实现方法:

a加载配置文件

ApplicationContext

context = new ClassPathXmlApplicationContext("spring.xml");

b获取文件的bean对象

HelloService helloService = (HelloService) context.getBean("helloService");

c使用bean

helloService.hello();



[if !supportLists]2.[endif]静态工厂(10%)

可以控制bean的初始化

静态的方法static一直会存在于内存中,静态方法可以直接点类名使用

非静态方法要new一个

[if !supportLists]3.[endif]实例化工厂(10%)

框架整合

实际情况不可能都是静态方法或者非静态方法



[if !supportLists]十、[endif]DI依赖注入

Dependency Injection


[if !supportLists]1.[endif]set注入(默认,常用)

条件必须存在setter方法

public class UserService {


//spring的依赖注入

    private UserDao userDao;


public void test(){


userDao.addUser();

    }


//必须存在

    public void setUserDao(UserDao userDao) {

        System.

out.println("setUserDao.....");


this.userDao = userDao;

    }

}

配置方法

 

      


[if !supportLists]2.[endif]构造器注入

 

       


[if !supportLists]3.[endif]静态工厂注入


[if !supportLists]4.[endif]实例化工厂注入



本质上 IOC 和 DI 时是一个东西!!!

IOC是这一种面向对象编程的设计原则,降低代码之间的耦合度,常用DI来实现。


[if !supportLists]5.[endif]p标签c标签



p标签服务于set注入

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

xml的name space (命名空间)

p----property     ***-ref

p:userDao-ref="userDao


c标签服务员构造器注入

xmlns:c=http://www.springframework.org/schema/c

c:userDao-ref="userDao”

或者

c:0-ref="userDao”(0、1、2、。。。代表了构造器里面对应位置的参数)

前者是通过构造器里面的参数名来查找,后者是通过参数的位置来查找。

[if !supportLists]6.[endif]集合注入(了解)

依赖注入不光可以注入对象,也可以注入基本数据类型。

注入集合List  需要标签有序可重复

        Set   需要标签   无序不可重复,天然的去重。

       Map   键值队 ****

注入properties

Properties(Java.util.Properties),该类主要用于读取Java的配置文件,不同的编程语言有自己所支持的配置文件,配置文件中很多变量是经常改变的,为了方便用户的配置,能让用户够脱离程序本身去修改相关的变量设置。就像在Java中,其配置文件常为.properties文件,是以键值对的形式进行参数配置的。



Xml比jeason规范,xml解析是银行项目居多。

你可能感兴趣的:(2019-07-05)