基于SpringBoot開機啟動與@Order注解
SpringBoot開機啟動與@Order注解
package com.example.zcw.runner; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.ApplicationArguments; import org.springframework.boot.ApplicationRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; /** * @Classname BootApplicationRunner * @Description TODO * @Date 2020/3/6 13:06 * @Created by zhaocunwei */ @Order(2) @Slf4j @Component public class BootApplicationRunner implements ApplicationRunner { @Override public void run(ApplicationArguments args) throws Exception { log.info("This is BootApplicationRunner ..."); } }
package com.example.zcw.runner; import lombok.extern.slf4j.Slf4j; import org.springframework.boot.CommandLineRunner; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; /** * @Classname BootCommandLineRunner * @Description TODO * @Date 2020/3/6 13:09 * @Created by zhaocunwei */ @Order(1) @Slf4j @Component public class BootCommandLineRunner implements CommandLineRunner { @Override public void run(String... args) throws Exception { log.info("This is BootCommandLineRunner ..."); } }
spring @Order標(biāo)記
@Order標(biāo)記定義了組件的加載順序
@Order標(biāo)記從spring 2.0出現(xiàn),但是在spring 4.0之前,@Order標(biāo)記只支持AspectJ的切面排序。spring 4.0對@Order做了增強,它開始支持對裝載在諸如Lists和Arrays容器中的自動包裝(auto-wired)組件的排序。
在spring內(nèi)部,對基于spring xml的應(yīng)用,spring使用OrderComparator類來實現(xiàn)排序。對基于注解的應(yīng)用,spring采用AnnotationAwareOrderComparator來實現(xiàn)排序。
@Order 標(biāo)記定義如下:
@Retention(value=RUNTIME) @Target(value={TYPE,METHOD,FIELD}) @Documented public @interface Order
這個標(biāo)記包含一個value屬性。屬性接受整形值。如:1,2 等等。值越小擁有越高的優(yōu)先級。
下面讓我們來看一個
使用spring 3.x 和spring 4.x 的例子
Ranks.java
package com.javapapers.spring3.autowire.collection; public interface Ranks { }
RankOne.java
package com.javapapers.spring3.autowire.collection; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; @Component public class RankOne implements Ranks{ private String rank = "RankOne"; public String toString(){ return this.rank; } }
RankTwo.java
package com.javapapers.spring3.autowire.collection; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; @Component public class RankTwo implements Ranks{ private String rank = "RankTwo"; public String toString(){ return this.rank; } }
RankThree.java
package com.javapapers.spring3.autowire.collection; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; @Component public class RankThree implements Ranks{ private String rank = "RankThree"; public String toString(){ return this.rank; } }
Results.java
Component to hold student ranks in a collection as shown below. package com.javapapers.spring3.autowire.collection; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Component; @Component public class Results { @Autowired private List ranks ; @Override public String toString(){ return ranks.toString(); } }
beans.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd"> <context:annotation-config /> <context:component-scan base-package="com.javapapers.spring3"/> </beans>
RanksClient.java
package com.javapapers.spring3.autowire.collection; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class RanksClient { public static void main(String[] args) { ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml"); Results results = (Results)context.getBean("results"); System.out.println(results); } }
輸出結(jié)果:
[RankOne, RankThree, RankTwo]
從結(jié)果可以看出,結(jié)果是沒有順序的。因為spring 3.x不支持對自動包裝組件的排序。
接下來,我升級spring的版本至4.x, 并對RanOne,RankTwo和RankThree加上order標(biāo)記,值做相應(yīng)的調(diào)整。
@Component @Order(1) public class RankOne implements Ranks{ private String rank = "RankOne"; public String toString(){ return this.rank; } }
輸出結(jié)果如下:
[RankOne, RankTwo, RankThree]
參考文章: http://javapapers.com/spring/spring-order-annotation/
以上為個人經(jīng)驗,希望能給大家一個參考,也希望大家多多支持腳本之家。
相關(guān)文章
Java及nginx實現(xiàn)文件權(quán)限控制代碼實例
這篇文章主要介紹了Java及nginx實現(xiàn)文件權(quán)限控制代碼實例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-06-06使用IntelliJ IDEA 2017.2.5 x64中的Spring Initializr插件快速創(chuàng)建Spring
這篇文章主要介紹了使用IntelliJ IDEA 2017.2.5 x64中的Spring Initializr插件快速創(chuàng)建Spring Boot/Cloud工程(圖解),需要的朋友可以參考下2018-01-01SpringMVC+MyBatis實現(xiàn)多數(shù)據(jù)源切換
在企業(yè)級應(yīng)用開發(fā)中,經(jīng)常需要處理來自不同數(shù)據(jù)庫的數(shù)據(jù),為了滿足這一需求,我們可以通過配置多個數(shù)據(jù)源來實現(xiàn)對不同數(shù)據(jù)庫的訪問,下面我們來看看具體實現(xiàn)吧2025-01-01Java中的NoSuchMethodException異常原因以及解決方案詳解
這篇文章主要介紹了Java中的NoSuchMethodException異常原因以及解決方案詳解,NoSuchMethodException是Java反射機制中的異常,在嘗試通過反射獲取方法時,找不到指定的方法,通常發(fā)生在調(diào)用?Class?對象的方法時,當(dāng)方法名或方法參數(shù)不匹配時拋出該異常,需要的朋友可以參考下2024-02-02