前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >编写自己的xxx-spring-boot-starter

编写自己的xxx-spring-boot-starter

作者头像
西柚dzh
发布2022-06-09 16:13:14
2250
发布2022-06-09 16:13:14
举报
文章被收录于专栏:dcmickey小站

编写自己的xxx-spring-boot-starter

1.引入两个包

代码语言:javascript
复制
<dependencies>
<!--负责从properties文件中读取配置信息-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <version>2.1.5.RELEASE</version>
  </dependency>
<!--实现自动化配置-->
  <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-autoconfigure</artifactId>
    <version>2.1.3.RELEASE</version>
  </dependency>
</dependencies>

2.编写配置类

配置文件读取类 xxxProperties

代码语言:javascript
复制
@ConfigurationProperties(prefix = "com.satrry")
@Data
public class StarryServiceProperties {
    // 自己需要的配置和yml配置文件中属性对应 eg:
    public static final String DefaultAppName = "yyds"
    private String appName = DefaultAppName;
    .....
}

那么配置文件就是

代码语言:javascript
复制
com.satrry.appName = xxx 

3.编写自己需要集成进starter中的服务

4. 编写自动装配类 xxxAutoConfigure

指定发现classpath下有xxx.class的话,进行自动配置

代码语言:javascript
复制
@Configuration
@ConditionalOnClass(xxx.class)
@EnableConfigurationProperties(StarryServiceProperties.class)
public class XxxAutoConfigure {
    @Autowired
    private StarryServiceProperties properties;

    @Bean
    @ConditionalOnMissingBean
    @ConditionalOnProperty(prefix = "com.starry", value = "enabled", havingValue = "true")
    StarterService starterService (){
        return new StarterService(properties.getConfig());
    }

}

5.新建spring.factories文件

resources/META-INF/ 路径下

代码语言:javascript
复制
org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.starry.StarryAutoConfigure

6.打包

mvn install

这里埋下一个注意点。自行百度starter mvn 打包注意。


版权属于:dingzhenhua

本文链接:https://cloud.tencent.com/developer/article/2019222

转载时须注明出处及本声明

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020-09-08,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 编写自己的xxx-spring-boot-starter
    • 1.引入两个包
      • 2.编写配置类
        • 3.编写自己需要集成进starter中的服务
          • 4. 编写自动装配类 xxxAutoConfigure
            • 5.新建spring.factories文件
              • 6.打包
              领券
              问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档