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知识库 -> SpringBoot-03自动装配原理2 -> 正文阅读

[Java知识库]SpringBoot-03自动装配原理2

1、组件添加

1.1 @Configuration

/**proxyBeanMethods特性
 * 1、配置类本身也是一个组件
 * 2、组件注册默认是单例的
 * 3、proxyBeanMethods:代理bean的方法,为true时每次都是从容器中取,保持单实例,每次拿到的对象是相等的
 *    Full:proxyBeanMethods = true
 *    Lits:proxyBeanMethods = false
 */
 //告诉这是一个配置类
 @Configuration(proxyBeanMethods = true)
 

最佳实战

  • 配置 类组件之间无依赖关系用Lite模式加速容器启动过程,减少判断
  • 配置类组件之间有依赖关系,方法会被调用得到之前单实例组件,用Full模式

主启动类测试

package com.springboot;

import com.springboot.Entity.ConfigUser;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ConfigurableApplicationContext;

//@SpringBootConfiguration
//@EnableTransactionManagement
//@ComponentScan("com.springboot")
//以上3注解等效于 @SpringBootApplication
@SpringBootApplication(scanBasePackages = "com.springboot")
@MapperScan("com.springboot.Mapper")
public class SpringbootApplication {

    public static void main(String[] args) {
        //SpringApplication.run(SpringbootApplication.class, args);
        //获取TOC容器
        ConfigurableApplicationContext context = SpringApplication.run(SpringbootApplication.class, args);
        String[] names = context.getBeanDefinitionNames();
        for (String name:names) {
            System.out.println(name);
        }
        ConfigUser configUser1 =context.getBean("pige",ConfigUser.class);
        System.out.println("组件为:"+configUser1);
        ConfigUser configUser2 =context.getBean("pige",ConfigUser.class);
        System.out.println(configUser1 == configUser2);  
    }
    
}

1. 2 原始实现

  • @Bean、@Component、@Controller、@Service、@Repository

1.3 @ComponentScan、@Import

  • @ComponentScan:扫描
  • @Import:在配置类中导入组件,可以为新注册,也可以为依赖中已有的
@Import({User.class, Depart.class})//导入组件,默认组件名称为全类名

1.4 @Conditional

条件装配:满足Conditional指定的条件,则进行组件注入

例如:
如果存在为pige的组件则注册组件user01,否则不注册

    @Bean  //注册装配组件
    @ConditionalOnBean(name = "pige")//选择性注册,当容器中有组件pige时,该组件才生效,也可以在类上
    public ConfigUser user01() {
        return new ConfigUser("yan", 18);
    }

    @Bean(name = "pige")//自定义
    public ConfigPet pet(){
        return  new ConfigPet("pige");
    }

2 、原生配置文件引入

@ImportResource("classpath:beans.xml")//引入原生的配置文件

3、配置绑定

将properties配置文件装配到JavaBean中

3.1 @Component + @ConfigurationProperties

在实体类中添加注解(@Component + @ConfigurationProperties)引入配置,在配置文件中添加配置

  • ConfigStudent.java
package com.springboot.Entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Data
@AllArgsConstructor
@NoArgsConstructor
/**
 * 配置绑定
 * 只有注册到容器中的组件,才会拥有SpringBoot提供的功能
 */
@Component
@ConfigurationProperties(prefix = "student")

public class ConfigStudent {
    private Long id;
    private String name;
    private Integer age;
}
  • application.yml
#对象赋值
student:
  id: 1
  name: pige
  age: 17
  ###############布尔型
  #  happy: true
  ###############日期
  #  birth: 1998/09/09
  ###############map
  #  maps: {k1: v1,k2: v2}
  ###############list
#  lists:
#    - play
#    - music
#    - girl
  • 测试
package com.springboot.Controller;

import com.springboot.Entity.ConfigStudent;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
@RequestMapping("/configstudent")
public class ConfigStudentController {
    @Autowired
    ConfigStudent configStudent;

    @RequestMapping("/student")
    public ConfigStudent configStudent(){
        return configStudent;
    }
}

浏览器访问:http://localhost:8003/configstudent/student
显 示 结 果:{"id":1,"name":"pige","age":17}

3.2 @EnableConfigurationProperties + @ConfigurationProperties

在配置类中开启属性配置(@EnableConfigurationProperties)功能,在实体类中引入配置( @ConfigurationProperties)

  • 配置类
@EnableConfigurationProperties(ConfigStudent.class)
  • 实体类
package com.springboot.Entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Data
@AllArgsConstructor
@NoArgsConstructor
/**
 * 配置绑定
 * 只有注册到容器中的组件,才会拥有SpringBoot提供的功能
 */
//@Component
@ConfigurationProperties(prefix = "student")

public class ConfigStudent {
    private Long id;
    private String name;
    private Integer age;
}

4、总结

配置类:

package com.springboot.Config;

import com.springboot.Entity.*;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.context.annotation.ImportResource;

/**
 * 特性
 * 1、配置类本身也是一个组件
 * 2、组件注册默认是单例的
 * 3、proxyBeanMethods:代理bean的方法,为true时每次都是从容器中取,保持单实例,每次拿到的对象是相等的
 * Full:proxyBeanMethods = true
 * Lits:proxyBeanMethods = false
 */

/**
 * 1-添加配置组件
 */
@Configuration(proxyBeanMethods = true) //告诉这是一个配置类
@Import({User.class, Depart.class})//导入组件,默认组件名称为全类名
/**
 * 2、引入原生bean.xml组件
 */
@ImportResource("classpath:beans.xml")//引入原生的配置文件
/**
 *3、配置绑定
 */
@EnableConfigurationProperties(ConfigStudent.class)
public class MyConfig {

    @Bean  //注册装配组件
    @ConditionalOnBean(name = "pige")//选择性注册,当容器中有组件pige时,该组件才生效,也可以在类上
    public ConfigUser user01() {
        return new ConfigUser("yan", 18);
    }

    @Bean(name ="pige") //自定义
    public ConfigPet pet() {
        return new ConfigPet("pige");
    }
}

实体类:

package com.springboot.Entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
public class ConfigUser {

    private String name;
    private Integer age;

}

package com.springboot.Entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class ConfigPet {
    private String petName;
}


package com.springboot.Entity;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Data
@AllArgsConstructor
@NoArgsConstructor
/**
 * 配置绑定
 * 只有注册到容器中的组件,才会拥有SpringBoot提供的功能
 */
//@Component
@ConfigurationProperties(prefix = "student")

public class ConfigStudent {
    private Long id;
    private String name;
    private Integer age;
}

application文件:

server:
  port: 8003

#对象赋值
student:
  id: 1
  name: pige
  age: 17
  ###############布尔型
  #  happy: true
  ###############日期
  #  birth: 1998/09/09
  ###############map
  #  maps: {k1: v1,k2: v2}
  ###############list
#  lists:
#    - play
#    - music
#    - girl
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-09-26 10:01:22  更:2021-09-26 10:03:25 
 
开发: 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 18:56:40-

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