真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用springboot自定義stater啟動流程-創(chuàng)新互聯(lián)

這篇文章將為大家詳細講解有關如何使用springboot自定義stater啟動流程,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

成都創(chuàng)新互聯(lián)是專業(yè)的蘭考網(wǎng)站建設公司,蘭考接單;提供做網(wǎng)站、網(wǎng)站設計,網(wǎng)頁設計,網(wǎng)站設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;采用PHP框架,可快速的進行蘭考網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!

springboot啟動時自動加載application.properties或者application.yml,如何定義自己的配置讓springboot自動識別:

首先我們新建一個maven工程打包方式選擇jar,然后引入所需的包

 4.0.0      org.springframework.boot    spring-boot-starter-parent    2.1.6.RELEASE        com.ruobbo.xxl  ruobbo.xxl  0.0.1-SNAPSHOT  jar      1.8              org.springframework.boot      spring-boot-starter      2.1.6.RELEASE              org.springframework.boot      spring-boot-autoconfigure      2.1.6.RELEASE              org.springframework.boot      spring-boot-configuration-processor      2.1.6.RELEASE              org.projectlombok      lombok      1.18.8      provided              com.xuxueli      xxl-job-core      2.0.1              org.springframework.boot      spring-boot-starter-test      test                        org.junit.vintage          junit-vintage-engine                                  releases      http://192.168.1.99:8081/nexus/content/repositories/releases              snapshots      http://192.168.1.99:8081/nexus/content/repositories/snapshots      

然后是配置讀取

@ConfigurationProperties(prefix = "xxl.job.executor")@Datapublic class XxlProperties {  private String adminAddresses;  private String appName;  private String ip;  private int port;  private String accessToken;  private String logPath;  private int logRetentionDays;  private String basePackages;  }

將讀取到的配置注入到bean中,然后加載到spring bean容器中

@Configuration@EnableConfigurationProperties(XxlProperties.class)public class XxlAutoConfiguration {    private Logger logger = LoggerFactory.getLogger(XxlAutoConfiguration.class);    @Resource  private XxlProperties xxlProperties;    @Bean(initMethod = "start", destroyMethod = "destroy")  public XxlJobSpringExecutor xxlJobExecutor() {    logger.info(">>>>>>>>>>> xxl-job config init.");    XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();    xxlJobSpringExecutor.setAdminAddresses(xxlProperties.getAdminAddresses());    xxlJobSpringExecutor.setAppName(xxlProperties.getAppName());    xxlJobSpringExecutor.setIp(xxlProperties.getIp());    xxlJobSpringExecutor.setPort(xxlProperties.getPort());    xxlJobSpringExecutor.setAccessToken(xxlProperties.getAccessToken());    xxlJobSpringExecutor.setLogPath(xxlProperties.getLogPath());    xxlJobSpringExecutor.setLogRetentionDays(xxlProperties.getLogRetentionDays());    return xxlJobSpringExecutor;  }  }

最后在resources目錄下添加META-INF文件夾添加spring.factories文件,文件內(nèi)容為指定要初始化springbean的類全路徑

org.springframework.boot.autoconfigure.EnableAutoConfiguration=\com.ruobbo.xxl.XxlAutoConfiguration

使用過程中引入包

     com.ruobbo.xxl      ruobbo.xxl      0.0.1-SNAPSHOT    

然后添加配置到application.properties或者application.yml

關于“如何使用springboot自定義stater啟動流程”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。


當前題目:如何使用springboot自定義stater啟動流程-創(chuàng)新互聯(lián)
URL分享:http://weahome.cn/article/hhssi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部