0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Spring Foxの設定を別ファイルに書きたい

Last updated at Posted at 2020-01-29

Spring Foxのリファレンスだとmainに書いてるけど
エントリポイントになるクラス/メソッドにごちゃごちゃ書きたくない!

環境

Spring Boot 2.2.3.RELEASE - 2.2.4.RELEASE
Spring Fox 2.9.2
Kotlin 1.3.61
Gradle

環境は以下の記事のまんま

アノテーションつければええんやで

SpringBootExampleApplication.kt
@SpringBootApplication
class SpringBootExampleApplication

fun main(args: Array<String>) {
	SpringApplication(SpringBootExampleApplication::class.java).run(*args)
}

エントリポイントじゃなくて

SwaggerConfig.kt

@Configuration
@EnableSwagger2
class SwaggerConfig {

    @Bean
    fun configurateApiDocument(): Docket = Docket(DocumentationType.SWAGGER_2)
            .select()
            .apis(RequestHandlerSelectors.any())
            .paths( PathSelectors.any() )
            .
            .
            .
}

@ConfigurationEnableSwagger2のアノテーションがつけば大丈夫っぽい!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?