spring

本文介绍了Spring作为轻量级的控制反转(IOC)和面向切面编程(AOP)框架的核心特性。通过示例展示了如何使用XML配置进行Bean定义,包括构造器和setter方式的依赖注入。同时提到了SpringBoot和SpringCloud在企业应用中的作用,以及SpringCloudDataFlow在连接各个组件中的角色。
摘要由CSDN通过智能技术生成

spring

解决企业应用开发

<!-- https://mvnrepository.com/artifact/org.springframework/spring-webmvc -->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-webmvc</artifactId>
    <version>5.3.5</version>
</dependency>
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-jdbc</artifactId>
    <version>5.3.5</version>
</dependency>

spring是一个轻量级的控制反转(IOC)和面向切面编程(AOP)的框架。

Spring Boot 构建一切
Spring Cloud 协调一切
Spring Cloud Data Flow 连接一切


IOC理论推导

1.UserDao 接口
2.UserDaoImpl 实现类
3.UserService 业务接口
4.UserServiceImpl 业务实现类

基于 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
        https://www.springframework.org/schema/beans/spring-beans.xsd">

    <bean id="..." class="...">  
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <bean id="..." class="...">
        <!-- collaborators and configuration for this bean go here -->
    </bean>

    <!-- more bean definitions go here -->

</beans>

依赖注入

构造器注入

set方式注入【重点】
1.依赖:bean对象的创建依赖于容器
2.注入:bean

拓展方式注入


Bean

使用Spring来创建对象,在spring这些都称为bean

类型 变量名 = new 类型()
Hello hello = new Hello()

id = 变量名
class = new的对象
property 相当于给对象中的属性设置一个值

<bean id="hello" class="com.passive.pojo.Hello">
      <property name="str" value="spring"/>
</bean>
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值