溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Springboot 怎樣關(guān)閉自動(dòng)配置

發(fā)布時(shí)間:2021-09-10 11:30:30 來源:億速云 閱讀:500 作者:柒染 欄目:開發(fā)技術(shù)

今天就跟大家聊聊有關(guān)Springboot 怎樣關(guān)閉自動(dòng)配置,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

Springboot 關(guān)閉自動(dòng)配置

springboot通過@SpringBootApplication 下的@EnableAutoConfiguration 實(shí)現(xiàn)自動(dòng)配置,節(jié)約了開發(fā)者大量時(shí)間,但是有可能有些不必要的配置。如果想關(guān)閉其中的某一項(xiàng)配置,那應(yīng)該怎么辦呢?

使用@SpringBootApplication下的exclude參數(shù)即可。

舉例說明:

1. 關(guān)閉Redis自動(dòng)配置

@SpringBootApplication(exclude={RedisAutoConfiguration.class  })

2. SpringBoot默認(rèn)會(huì)自動(dòng)配置數(shù)據(jù)庫

如果業(yè)務(wù)不需要 也可以可以在 pringBootApplication 注解中操作:

@SpringBootApplication(exclude = {
DataSourceAutoConfiguration.class,
DataSourceTransactionManagerAutoConfiguration.class,
HibernateJpaAutoConfiguration.class})

注:有多項(xiàng)配置時(shí)可以用逗號(hào)隔開

開啟關(guān)閉自動(dòng)任務(wù)配置流程

1.需求

可以根據(jù)自己配置的開關(guān),動(dòng)態(tài)的控制springboot含有@Scheduled的定時(shí)任務(wù)

2.解決方案

1.刪除啟動(dòng)類的 @EnableScheduling

2.利用condition進(jìn)行條件判斷

public class SchedulerCondition implements Condition {
    @Override
    public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) {
        return Boolean.valueOf(context.getEnvironment().getProperty("com.myapp.config.scheduler.enabled")); //就是yml值      
    }
}

3.進(jìn)行新的定時(shí)任務(wù)裝配到IOC

 @Configuration
 public class Scheduler {
    @Conditional(SchedulerCondition.class)
    @Bean(name = TaskManagementConfigUtils.SCHEDULED_ANNOTATION_PROCESSOR_BEAN_NAME)
    @Role(BeanDefinition.ROLE_INFRASTRUCTURE)
    public ScheduledAnnotationBeanPostProcessor scheduledAnnotationProcessor() {
        return new ScheduledAnnotationBeanPostProcessor();
    }
}

看完上述內(nèi)容,你們對(duì)Springboot 怎樣關(guān)閉自動(dòng)配置有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI