溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot微服務自定義starter原理的示例分析

發(fā)布時間:2021-09-27 14:26:33 來源:億速云 閱讀:104 作者:小新 欄目:編程語言

這篇文章主要介紹了springboot微服務自定義starter原理的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

使用spring boot開發(fā)微服務后,工程的數量大大增加(一定要按照領域來切,不要一個中間件客戶端包一個),讓各個jar從開發(fā)和運行時自包含成了一個重要的內容之一。spring boot starter就可以用來解決該問題(沒事啟動時別依賴于applicationContext.getBean獲取bean進行處理,依賴關系太折騰,有時候在復雜系統中解決此事比較麻煩,需要修改開源框架代碼才能實現,反過來修改開源源碼后,維護也是個麻煩事)。言歸正傳,說說自定義starter。首先請熟悉spring boot的核心理念,不然容易為了starter而starter,這種情況太多了。

創(chuàng)建一個maven項目,在pom文件中添加如下依賴:

<dependencies>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-autoconfigure</artifactId>      <version>2.0.0.RELEASE</version>    </dependency>  </dependencies>  <build>    <plugins>      <plugin>        <groupId>org.springframework.boot</groupId>        <artifactId>spring-boot-maven-plugin</artifactId>      </plugin>    </plugins>  </build>

創(chuàng)建properties屬性類,用于讀取屬性(當然可選,如果一開始沒有按照spring boot autoconfig的套路來,改起來還是挺費勁的,但是一旦這么做了,就會想,TMD這才是真正的開發(fā)模式,@Value那套早該丟了)。

@ConfigurationProperties(prefix = "com.xxx")public class HelloServiceProperties {  private String name = "james";  private String hobby = "cc";  public String getName() {    return name;  }  public void setName(String name) {    this.name = name;  }  public String getHobby() {    return hobby;  }  public void setHobby(String hobby) {    this.hobby = hobby;  }}

@ConfigurationProperties配置此注解可以自動導入application.properties配置文件中的屬性,前提需要指定屬性前綴prefix。

3.創(chuàng)建配置類

public class HelloService {  private String name;  private String hobby;  public String getName() {    return "name is " + name;  }  public String getHobby() {    return "hobby is " + hobby;  }  public void setName(String name) {    this.name = name;  }  public void setHobby(String hobby) {    this.hobby = hobby;  }}

4.創(chuàng)建自動配置類:

@Configuration@EnableConfigurationProperties(HelloServiceProperties.class)@ConditionalOnClass(HelloServiceConfiguration.class)@ConditionalOnProperty(prefix = "com.xxx", value = "enabled", matchIfMissing = true)@ComponentScan({"com.xxx"}) // 如果bean比較多,一般采用這種方式public class HelloServiceAutoConfiguration {  @Autowired  private HelloServiceProperties helloServiceProperties;  @Bean // bean比較少、且順序和邏輯有特殊要求的模塊,一般采用這種方式  @ConditionalOnMissingBean(HelloServiceConfiguration.class)  public HelloServiceConfiguration helloServiceConfiguration() {    HelloService helloService = new HelloService();    helloService.setName(helloServiceProperties.getName());    helloService.setHobby(helloServiceProperties.getHobby());    return helloService;  }}

5.在resources文件夾下面新建一個META-INF文件,并在下面創(chuàng)建spring.factories文件,將4中的配置類進行注冊。

org.springframework.boot.autoconfigure.EnableAutoConfiguration=com.xxx.HelloServiceAutoConfiguration

6.新建一個springboot項目,在pom文件中添加剛剛打包的jar的坐標。

7.使用@Autowired訪問接口。

@SpringBootApplication@RestControllerpublic class Springboot03Application {  @Autowired  private HelloService helloService;  public static void main(String[] args) {    SpringApplication.run(Springboot03Application.class, args);  }  @RequestMapping("/name")  public String getName() {    return helloService.getName();  }  @RequestMapping("/hobby")  public String getHobby() {    return helloService.getHobby();  }}

相比原來要使用@Import注解導入一個@Configuration類,或者在一處集中維護ComponentScan的所有路徑,使用autoconfigure starter可以讓應用明顯實現的更加自包含和解耦。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“springboot微服務自定義starter原理的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業(yè)資訊頻道,更多相關知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI