Springboot專案中Swagger的使用

2021-10-07 02:57:02 字數 981 閱讀 8676

>

>

2.7.0swagger.version

>

properties

>

>

>

io.springfoxgroupid

>

>

springfox-swagger-uiartifactid

>

>

$version

>

dependency

>

>

>

io.springfoxgroupid

>

>

springfox-swagger2artifactid

>

>

$version

>

dependency

>

@configuration

@enableswagger2

public

class

swaggerconfig

//環境二

@bean

public docket docket

(environment environment)

//這裡的引數是頁面上的顯示

private apiinfo apiinfo()

}

在controller介面方法上加@apioperation(" 說明 ")起到注釋說明的作用

在實體類上加@apimodel(value=" 說明 ", description=" 描述 ")在實體列屬性上加@apimodelproperty(value = " 說明 ")通過http://loaclhost:/swagger-ui.html即可訪問,進行介面測試

SpringBoot專案中Redis配置多資料庫

背景 乙個小需求,單redis服務例項下根據業務配置多個資料庫,需要自定義redis配置稍作改動才能實現,此時就不能redistemplate一步就位了 注 redis使用單執行緒 多路復用 io模型,別把多業務的併發全加在乙個redis例項上,最好多例項或者集群處理!基本的配置我就不多說了,可以參...

Spring Boot 專案中引入 flyway

org.flywaydb flyway core 5.2.4 flyway spring.flyway.baseline on migrate true spring.flyway.baseline description flyway baseline 禁止刪除 schema 下的 table s...

SpringBoot專案中定製banner

在springboot專案啟動的時候會列印乙個banner,如下圖 而這個banner是可定製的,在resource目錄下建立乙個banner.txt檔案,並在這個檔案裡面寫入想要列印出來的文字。比如 然後將banner.txt檔案複製到spring 專案的resource目錄下,並啟動專案,效果如...