栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

自定义spring-boot-stater笔记

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

自定义spring-boot-stater笔记

参考spring-boot-starter原理及实现方法

定义pom文件

spring-boot-starter打包注意 jar-no-fork



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.4.RELEASE
         
    
    com.ouyanglol
    starter-demo
    0.0.1-SNAPSHOT
    starter-demo
    spring-boot-starter demo

    
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter
        

        
            org.springframework.boot
            spring-boot-configuration-processor
            true
        
        
            org.projectlombok
            lombok
            true
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
            
                org.apache.maven.plugins
                maven-source-plugin
                
                    
                        package
                        
                           jar-no-fork
                        
                    
                
            
        
    




config 配置

读取配置,@ConfigurationProperties,自定义配置

enableXXX开启使用stater入口

定义annotation 定义开启stater的注解,通过@ConditionalOnBean绑定

定义自动配置

定义一个类,如: DemoAutoConfiguration
引入自定义stater的业务逻辑,引入service等@ConditionalOnBean 开启使用条件@EnableConfigurationProperties(xxx) 使用自定义配置类, 在resources/meta-INF/下创建spring.factories文件

告诉spring需要加载的类

org.springframework.boot.autoconfigure.EnableAutoConfiguration=
com.ouyanglol.starterdemo.config.DemoAutoConfiguration

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/774675.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号