IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring入门 -> 正文阅读

[Java知识库]Spring入门

一、Spring概述


1.1 web 项目开发中的耦合度问题

  • 在Servlet中需要调用service中的方法,则需要在Servlet类中通过new关键字创建Service的实例

    public interface StudentService{
     ? ?public List<Student> listStudent();
    }
    ?
    public class StudentServiceImpl1 implements StudentService{
     ? ?public List<Student> listStudent(){
     ? ? ? ?//查询学生基本信息
     ?  }
    }
    ?
    public class StudentServiceImpl2 implements StudentService{
     ? ?public List<Studen> listStudent(){
     ? ? ? ?//查询学生成绩信息
     ?  }
    }
    ?
    public class StudentListService extends HttpServlet{
     ? ?//在Servlet中使用new关键字创建StudentServiceImpl1对象,增加了servlet和service的耦合度
     ? ?private StudentService studentService = new StudentServiceImpl1();
     ? ?protected void doGet(HttpServletRequest request,HttpServletResponse response){
     ? ? ? ?studentService.listStudent();
     ?  }
     ? ?protected void doPost(HttpServletRequest request,HttpServletResponse response){
     ? ? ? ?doGet(resquest,response);
     ?  }
    }
    • 在service实现类中需要调用DAO中的方法,也需要在service实现类中通过new关键字创建DAO实现类对象

    • 如果使用new关键字创建对象

      • 失去了面向接口编程的灵活性

      • 代码的侵入性增强(增加了耦合度,降低了代码的灵活性)

1.2 面向接口编程

面向接口编程

解决方案:在servlet中定义service接口的对象,不使用new关键字创建实现类对象,在servlet实例化的时候,通过反射动态的给service对象变量赋值

如何实现:Spring实现

二、Spring IoC

Spring IoC容器组件,可以完成对象的创建、对象的属性赋值、对象管理

2.1 Spring框架部署(IoC)

2.1.1 创建Maven工程

2.1.2 添加SpringIoC依赖

  • core

  • beans

  • aop

  • expression

  • context

        <dependency>
 ? ? ? ? ? ?<groupId>org.springframework</groupId>
 ? ? ? ? ? ?<artifactId>spring-beans</artifactId>
 ? ? ? ? ? ?<version>5.2.13.RELEASE</version>
 ? ? ? ?</dependency>
?
 ? ? ? ?<dependency>
 ? ? ? ? ? ?<groupId>org.springframework</groupId>
 ? ? ? ? ? ?<artifactId>spring-core</artifactId>
 ? ? ? ? ? ?<version>5.2.13.RELEASE</version>
 ? ? ? ?</dependency>
?
 ? ? ? ?<dependency>
 ? ? ? ? ? ?<groupId>org.springframework</groupId>
 ? ? ? ? ? ?<artifactId>spring-context</artifactId>
 ? ? ? ? ? ?<version>5.2.13.RELEASE</version>
 ? ? ? ?</dependency>

2.1.3 创建Spring配置文件

通过配置文件 “告诉” Spring容器创建什么对象,给对象属性赋什么值

  • 在resources目录下创建名为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">
?
?
</beans>

2.2 SpringIoC使用

使用SpringIoC组件创建并管理对象

2.2.1 创建一个实体类

package com.whoami.bean;
?
import java.util.Date;
?
/**
 * @author whoami
 * @date 2021年08月27日 20:56
 */
public class Student {
?
 ? ?private String stuNum;
 ? ?private String stuNname;
 ? ?private int stuAge;
 ? ?private String stuGender;
 ? ?private Date entranceTime; //入学时间
 ? ? ? 、、、Get ?Set ?toString、、、
}
?

2.2.2 在Spring配置文件中配置实体类

<?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进行管理,id表示实体类的唯一标识-->
 ? ?<bean id="student" class="com.whoami.bean.Student">
 ? ? ? ?<property name="stuNum" value="10002"></property>
 ? ? ? ?<property name="stuNname" value="李四"></property>
 ? ? ? ?<property name="stuAge" value="20"></property>
 ? ? ? ?<property name="stuGender" value="女"></property>
 ? ?</bean>
?
</beans>
?

2.2.4 初始化Spring对象工厂,获取对象

  • ClassPathXmlApplicationContext

 ? ? ? ?//1.初始化Spring容器,加载Spring配置文件
 ? ? ? ?ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
 ? ? ? ?//通过Spring容器获取Student对象
 ? ? ? ?Student student1 = (Student) context.getBean("student");
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-08-28 08:53:50  更:2021-08-28 08:55:33 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 13:17:36-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码