本篇文章為大家展示了springboot中怎么利用bean實(shí)現(xiàn)條件裝配,內(nèi)容簡(jiǎn)明扼要并且容易理解,絕對(duì)能使你眼前一亮,通過(guò)這篇文章的詳細(xì)介紹希望你能有所收獲。
10余年的壽縣網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開(kāi)發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。成都營(yíng)銷(xiāo)網(wǎng)站建設(shè)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整壽縣建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無(wú)論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“壽縣網(wǎng)站設(shè)計(jì)”,“壽縣網(wǎng)站推廣”以來(lái),每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。
條件裝配
從Spring Framework 3.1開(kāi)始,允許在Bean裝配時(shí)增加前置條件判斷。
啥是條件裝配
在bean裝配前的條件判斷。比如@Profile(是在spring3.1中引入),@Contditional(spring4.0中引入)實(shí)現(xiàn)方式:注解方式,編程方式。
假設(shè)我們現(xiàn)在有一個(gè)多數(shù)據(jù)求和計(jì)算的小需求,定義兩種方式Java7和Java8,然后使用條件裝配的方式分別裝配不同的bean。
首先我們定義一個(gè)接口
public interface CalculateService { /** * 從多個(gè)整數(shù) sum 求和 * @param values 多個(gè)整數(shù) * @return sum 累加值 */ Integer sum(Integer... values);}
其次是兩種不同的實(shí)現(xiàn)方式,Java7的方式
@Profile("Java7")@Servicepublic class Java7CalculateService implements CalculateService { @Override public Integer sum(Integer... values) { System.out.println("Java 7 for 循環(huán)實(shí)現(xiàn) "); int sum = 0; for (int i = 0; i < values.length; i++) { sum += values[i]; } return sum; }}
Java8的實(shí)現(xiàn)
@Profile("Java8")@Servicepublic class Java8CalculateService implements CalculateService { @Override public Integer sum(Integer... values) { System.out.println("Java 8 Lambda 實(shí)現(xiàn)"); int sum = Stream.of(values).reduce(0, Integer::sum); return sum; } public static void main(String[] args) { CalculateService calculateService = new Java8CalculateService(); System.out.println(calculateService.sum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)); }}
我們?cè)谶@里使用了@Profile("Java8")注解來(lái)表明對(duì)應(yīng)的profile。然后我定義一個(gè)啟動(dòng)類(lèi)在里面配置裝配哪一個(gè)bean
@SpringBootApplication(scanBasePackages = "com.service")public class CalculateServiceBootstrap { public static void main(String[] args) { ConfigurableApplicationContext context = new SpringApplicationBuilder(CalculateServiceBootstrap.class) .web(WebApplicationType.NONE) .profiles("Java8") .run(args); // CalculateService Bean 是否存在 CalculateService calculateService = context.getBean(CalculateService.class); System.out.println("calculateService.sum(1...10) : " + calculateService.sum(1, 2, 3, 4, 5, 6, 7, 8, 9, 10)); // 關(guān)閉上下文 context.close(); }}
使用基于@ConditionalOnSystemProperty注解的方式實(shí)現(xiàn)。
首先我們定義一個(gè)注解,這里定義了一個(gè)屬性和一個(gè)值。
/** * Java 系統(tǒng)屬性 條件判斷 * */@Retention(RetentionPolicy.RUNTIME)@Target({ ElementType.TYPE, ElementType.METHOD })@Documented@Conditional(OnSystemPropertyCondition.class)public @interface ConditionalOnSystemProperty { /** * Java 系統(tǒng)屬性名稱 * @return */ String name(); /** * Java 系統(tǒng)屬性值 * @return */ String value();}
定義一個(gè)條件判斷的類(lèi),當(dāng)這個(gè)類(lèi)中的條件滿足是才會(huì)裝載bean,這個(gè)實(shí)現(xiàn)類(lèi)實(shí)現(xiàn)org.springframework.context.annotation.Condition,AnnotatedTypeMetadata可以獲取的到注解中的name和value信息,假設(shè)我們現(xiàn)在實(shí)現(xiàn)判斷系統(tǒng)屬性和注解中的配置的一樣就加載bean,System.getProperty("user.name")獲取當(dāng)前系統(tǒng)下的用戶名,我的mac創(chuàng)建的用戶名叫yanghongxing,如果我們?cè)谧⒔庵信渲玫膙alue是yanghongxing則裝載這個(gè)bean。
/** * 系統(tǒng)屬性條件判斷 * */public class OnSystemPropertyCondition implements Condition { @Override public boolean matches(ConditionContext context, AnnotatedTypeMetadata metadata) { Map
最后在啟動(dòng)類(lèi)中啟動(dòng)
public class ConditionalOnSystemPropertyBootstrap { @Bean @ConditionalOnSystemProperty(name = "user.name", value = "yanghongxing") public String helloWorld() { return "Hello,World Honson"; } public static void main(String[] args) { ConfigurableApplicationContext context = new SpringApplicationBuilder(ConditionalOnSystemPropertyBootstrap.class) .web(WebApplicationType.NONE) .run(args); // 通過(guò)名稱和類(lèi)型獲取 helloWorld Bean String helloWorld = context.getBean("helloWorld", String.class); System.out.println("helloWorld Bean : " + helloWorld); // 關(guān)閉上下文 context.close(); }}
我們可以在OnSystemPropertyCondition實(shí)現(xiàn)復(fù)雜的裝載類(lèi)的條件,判斷是否裝載某個(gè)bean。
上述內(nèi)容就是springboot中怎么利用bean實(shí)現(xiàn)條件裝配,你們學(xué)到知識(shí)或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識(shí)儲(chǔ)備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。