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自定义starter -> 正文阅读

[Java知识库]springboot自定义starter

  1. 导入spring的autoconfigure的starter
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
  1. 写一个默认的配置 xxxProperties 类。。这个类使用@ConfigurationProperties 引入外部的配置文件,并且设置自己的默认属性值

  2. 写一个你要注入容器的xxxService类。 (xxxProperteis 和 xxxService 属性名字是一样的,xxxProperties相当于 xxxService的默认属性值)

  3. 写一个xxxServiceAutoConfiguration类,这个类使用@EnableConfigurationProperties 开启上面的xxxProperties 类的属性注入,这样xxxProperties 类的对象就被注入到容器中,然后注入一个xxxService的Bean,将xxxProperties的值赋值给xxxService。。通过@ConditionalOnClass判断用户是否使用了xxxService,如果使用了就自动注入

  4. @SpringBootApplication 下的@EnableAutoConfiguration 表示会启用Spring应用程序上下文自动配置,该注解会自动导入一个名为AutoConfigurationImportSelector 类,而这个类回去读取一个名为spring.factories文件,,这个spring.factories文件中则定义了需要加载的自动化配置类,所以我们也需要自定义一个starter。。首先在resources下创建 META-INF 文件夹,然后在文件夹中创建一个名为spring.factories文件,文件内容如下

org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.cj.HelloServiceAutoConfiguration
  1. 本地安装 使用maven的 install 命令
  2. 使用starter,,在别的工程中导入这个安装工程的坐标
<dependency>
   <groupId>com.cj</groupId>
   <artifactId>mystarter</artifactId>
   <version>0.0.1-SNAPSHOT</version>
</dependency>

代码:

@ConfigurationProperties(prefix = "user")
public class HelloProperties {
    private static final String DEFAULT_USERNAME="waterkid";
    private static final String DEFAULT_MSG ="xxx";

    private String username = DEFAULT_USERNAME;
    private String msg = DEFAULT_MSG;

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}
public class HelloService {// 和 默认属性 里面属性名字相同,,默认属性类就是为这个类的对象服务的
    private String username;
    private String msg;

    @Override
    public String toString() {
        return "HelloService{" +
                "username='" + username + '\'' +
                ", msg='" + msg + '\'' +
                '}';
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }

    public String getMsg() {
        return msg;
    }

    public void setMsg(String msg) {
        this.msg = msg;
    }
}
@Configuration
@ConditionalOnClass(HelloService.class)
@EnableConfigurationProperties(HelloProperties.class)  // 让HelloProperties自动注入属性,声明为一个bean
public class HelloServiceAutoConfiguration {
    @Autowired
    HelloProperties helloProperties;

    @Bean
    HelloService helloService(){
        HelloService helloService = new HelloService();
        helloService.setUsername(helloProperties.getUsername());
        helloService.setMsg(helloProperties.getMsg());
        return helloService;
    }
}

在另一个工程中测试

@SpringBootApplication
public class Demo {

   static HelloService helloService;
    public static void main(String[] args) {
        SpringApplication.run(Demo.class,args); // 容器要运行,starter才会生效
        System.out.println(helloService);
    }
    @Autowired
    public  void setHelloService(HelloService helloService) {
        Demo.helloService = helloService;
    }
}
  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2021-09-09 11:36:30  更:2021-09-09 11:38:39 
 
开发: 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 16:41:50-

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