這篇文章將為大家詳細講解有關如何使用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,然后引入所需的包
然后是配置讀取
@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
使用過程中引入包
然后添加配置到application.properties或者application.yml
關于“如何使用springboot自定義stater啟動流程”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。