二 SpringBoot2 0啟動方式

2021-10-06 07:48:18 字數 1613 閱讀 1886

方式一可以將啟動類作為控制器,從而實現啟動並訪問。

/**

* @author 小吉

* @description springboot2.0啟動方式一

方式二需要在啟動類中加上**@componentscan**註解,註解可以配置掃瞄的基礎包,用於指定從哪個包往下掃瞄元件。

/**

* @author 小吉

* @description springboot2.0啟動方式二

* @date 2020/5/19

*/@restcontroller

public

class

hellocontroller2

}

/**

* @author 小吉

* @description springboot啟動類

* @author 小吉

* @description springboot2.0啟動方式三

* @date 2020/5/19

*/@restcontroller

public

class

hellocontroller3

}

/**

* @author 小吉

* @description springboot啟動類

這三種方式都能啟動springboot應用。使用方式二指定基礎包掃瞄,可提高springboot應用的效能,節省記憶體空間,因為可以只掃瞄需要用到的元件。方式三也是常用的啟動方式,**編寫更加簡潔。

關於springboot啟動方式就說到這裡,下一節繼續講述springboot2.0 yml使用,感謝小夥伴們的圍觀。

spring boot 2 0系列筆記 二

之前使用的spring boot 版本一直是1.5.x,spring推出2.0已經有一段時間,個人感覺可以花精力去研究一些變化的新特性,網上的文章很多,我就不一一介紹了,本文主要是用spring boot 2.0構建乙個現在很流行的分布式module專案的demo,位址在本文最後會貼出.下面開始表演...

springboot2 0 對CORS的支援

先自定義乙個配置類 package com.springboot2.thyemleaf.configuration import org.springframework.context.annotation.bean import org.springframework.context.annota...

Spring Boot2 0實現微服務呼叫

微服務相互呼叫可避免跨域問題 呼叫兩種方式 1.resttemplate 底層採用httpclient的技術,屬於spring boot,是spring boot 預設採用的rebbon服務呼叫。2.fegin 建議 屬於spring cloud resttemplate 控制器 restcontr...