事象
Spring Bootアプリケーションにspringfoxを使ってSwaggerDocumentを生成する際に次のエラーが発生します。
@EnalbeSwagger2
のアノテーションを記述するとエラーが出ます。
エラー内容
Failed to start bean 'documentationPluginsBootstrapper';
nested exception is java.lang.NullPointerException
環境
- Java 11.0.3
- Springboot 2.7.13-SNAPSHOT
- spring-dependency-management 1.0.15.RELEASE
解決策
次の対策をすることによって解決できると思います。
Springfoxのバージョンを3.0.0に変更
Springfoxのバージョンを次のように変更します。
build.gradle
implementation "io.springfox:springfox-boot-starter:3.0.0"
application.propertiesにspringfoxの設定を追加
application.propertiesに次の設定を追加します。
application.properties
spring.mvc.pathmatch.matching-strategy=ANT_PATH_MATCHER