后端:Spring-1

ops/2024/11/1 20:06:37/

在这里插入图片描述

文章目录

    • 1. 了解 spring(Spring Framework)
    • 2. 基于maven搭建Spring框架
      • 2.1 纯xml配置方式来实现Spring
      • 2.2 注解方式来实现Spring
      • 3. Java Config类来实现Spring
    • 2.4 总结

springSpring_Framework_3">1. 了解 spring(Spring Framework)

传统方式构建spring(指的是Spring Framework)项目,导入依赖繁琐(需要自行去maven官网去下载依赖或者copy对应的依赖,并且各个依赖之间可能还存在版本冲突的问题)、项目配置繁琐(需要添加一些配置文件,且配置文件中需要写一些重复的代码,总之很繁琐)。
而Spring Boot简化了上述操作,比如之前的Spring项目中整合mybatis时,需要在配置文件中定义对应的bean才行,而使用Spring Boot之后,(在引入对应依赖的前提下)只需要在application.yml中添加一些数据库连接的对应信息及其他一些配置,然后就可以实现同样的效果了。
上述只是对于两者做的一个简单比较。请添加图片描述

说到Spring,应该联想到IOC(控制反转)、DI(依赖注入)。所谓控制反转(对象创建权力)一个类需要用到另外一个类的对象,通常做法是在这个类下new另外一个类对象,但是这样会让这两个对象产生一个强关联,它们之间就建立了强耦合的关系,而代码之间的耦合度越高,对越后期维护越不利。而使用了Spring之后,可以把类放到容器中进行管理,需要用到某个类时只需要把这个类进行依赖注入即可,从而降低耦合度。

2. 基于maven搭建Spring框架

使用idea创建一个maven项目,这只是一个例子,项目结构如下:
在这里插入图片描述
导入junit依赖,如下:

<dependency><groupId>junit</groupId><artifactId>junit</artifactId><version>4.12</version><scope>test</scope>
</dependency>

各个类的参考代码如下:

java">package com.lize.dao;public class UserDao {public void printUserD(){System.out.println("UserDao");}
}
java">package com.lize.service;import com.lize.dao.UserDao;public class UserService {private UserDao ud = new UserDao();public void printUserS(){ud.printUserD();}
}

测试代码如下:

java">import com.lize.service.UserService;
import org.junit.Test;public class Test01 {@Testpublic void test(){UserService userService = new UserService();userService.printUserS();}
}

2.1 纯xml配置方式来实现Spring

下面使用Spring方式来降低上述代码耦合度。首先,添加spring的对于依赖。

<dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.1.9.RELEASE</version>
</dependency>

在resources文件夹下面创建一个xml文件,在xml文件添加对应的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/beanshttp://www.springframework.org/schema/beans/spring-beans-4.0.xsd"><bean class="com.lize.dao.UserDao" name="userDao"/><bean class="com.lize.service.UserService" name="userService"><property name="ud" ref="userDao"/><!--   ud为对应的service文件的变量名     --></bean></beans>

当然对应service文件也需要修改,添加set方法。

java">package com.lize.service;import com.lize.dao.UserDao;public class UserService {private UserDao ud;public void setUd(UserDao ud) {this.ud = ud;}public void printUserS(){ud.printUserD();}
}

运行代码如下,从abc.xml文件获取对应容器对象,然后从这个对象中获取对应的bean。

java">import com.lize.service.UserService;
import org.junit.Test;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class Test01 {@Testpublic void test(){ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext("abc.xml");UserService us = (UserService) ctx.getBean("userService");us.printUserS();}
}

2.2 注解方式来实现Spring

此时abc.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.xsdhttp://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd"><context:component-scan base-package="com.lize"/><!--   dao、service包在这个目录下,spring容器会自动扫描,当然需要在对应类上添加注解     -->
</beans>

此时在dao、service对应的类上添加注解“@Component”,如下:

java">package com.lize.service;import com.lize.dao.UserDao;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;@Component
public class UserService {@Autowiredprivate UserDao ud;public void printUserS(){ud.printUserD();}
}

使用注解“Autowired"自动导入,不需要再写set方法,运行代码不需要修改。

3. Java Config类来实现Spring

在2的基础上,abc.xml可以不需要了,此时只需要定义一个配置类,如下:

java">package com.lize.config;import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;@Configuration
// 表明这是一个配置类
@ComponentScan("com.lize")
// 需要扫描的包
public class SpringConfig {
}

运行方式如下:

java">import com.lize.config.SpringConfig;
import com.lize.service.UserService;
import org.junit.Test;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;public class Test01 {@Testpublic void test2(){AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(SpringConfig.class);UserService us = (UserService) context.getBean("userService");us.printUserS();}
}

2.4 总结

第一种方式基于xml文件实现控制反转,需要在xml文件定义大量的bean;第二种方式只需要在xml文件添加扫描标签,并且需要在对应的类上添加注解;第三种方式需要定义配置类,在配置类上添加对应注解,通过注解的方式去扫描对应包下的对应类。Spring Boot基于第三种方式再进一步封装实现的。
在这里插入图片描述


http://www.ppmy.cn/ops/130222.html

相关文章

基于微信小程序实现信阳毛尖茶叶商城系统设计与实现

作者简介&#xff1a;Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、多年校企合作经验&#xff0c;被多个学校常年聘为校外企业导师&#xff0c;指导学生毕业设计并参与学生毕业答辩指导&#xff0c;…

Python中的文件I/O操作

在Python编程中&#xff0c;文件I/O&#xff08;输入/输出&#xff09;是一个重要的主题&#xff0c;涉及如何读取和写入文件。无论是处理文本文件还是二进制文件&#xff0c;Python提供了简洁易用的接口。本文将介绍如何在Python中进行文件I/O操作&#xff0c;包括读取、写入和…

若依-侧边栏开关按钮禁用,侧边栏始终保持展开

若依框架&#xff0c;当首页为echarts图时&#xff0c;侧边栏展开关闭echarts会超出 解决思路&#xff1a; 当菜单为首页时&#xff0c;侧边栏开关按钮禁用&#xff0c;侧边栏始终保持展开 \src\store\modules\app.jstoggleSideBar(withoutAnimation, typeVal) {if (typeVal …

如何保护网站安全

1. 使用 Web 应用防火墙&#xff08;WAF&#xff09; 功能&#xff1a;WAF 可以实时检测和阻止 SQL 注入、跨站脚本&#xff08;XSS&#xff09;、文件包含等常见攻击。它通过分析 HTTP 流量来过滤恶意请求。 推荐&#xff1a;可以使用像 雷池社区版这样的 WAF&#xff0c;它提…

音乐网站新篇章:SpringBoot Web实现

2相关技术 2.1 MYSQL数据库 MySQL是一个真正的多用户、多线程SQL数据库服务器。 是基于SQL的客户/服务器模式的关系数据库管理系统&#xff0c;它的有点有有功能强大、使用简单、管理方便、安全可靠性高、运行速度快、多线程、跨平台性、完全网络化、稳定性等&#xff0c;非常…

面向对象高级-static

文章目录 1.1 static修饰成员变量1.2 static 修饰成员变量的应用场景1.3 static 修饰成员方法1.4 工具类来看 static 的应用1.5 static 的注意事项1.6 static 应用&#xff08;代码块&#xff09;1.7 static应用&#xff08;单例设计模式&#xff09; static 读作静态&#xff…

android studio编译错误提示无法下载仓库

一、调整方法之一 buildscript {repositories {google()jcenter()//maven { url https://maven.aliyun.com/repository/google }//maven { url https://maven.aliyun.com/repository/central }}dependencies {// classpath "com.android.tools.build:gradle:4.1.1"c…

WAF+AI结合,雷池社区版的强大防守能力

网上攻击无处不不在&#xff0c;为了保护我自己的网站&#xff0c;搜索安装了一个开源免费的WAF 刚安装完成就收到了海外的攻击&#xff0c;看到是海外的自动化攻击工具做的 雷池刚好也有AI分析&#xff0c;于是就尝试使用这个功能&#xff0c;看看这个ai能力到底怎么样 以下…