Spring Boot OpenAPI 3 с Spring Data REST
Мне не удается документировать мой REST API Spring Data с помощью OpenAPI. Ничего не отображается на домашней странице swagger-ui (и, очевидно, /v3/api-docs).
Вот выдержка из моих зависимостей:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-ui</artifactId>
<version>1.6.4</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-data-rest</artifactId>
<version>1.6.4</version>
</dependency>
И есть мой репозиторий JPA:
@RepositoryRestResource(collectionResourceRel = "people", path = "people")
public interface PersonsRepository extends JpaRepository<Person, Long> {
Person findByLastname(@Param("name") @RequestParam("name") String lastname);
}
И это моя настройка SpringBoot:
spring.datasource.url=jdbc:h2:mem:testdb;DATABASE_TO_UPPER=false
spring.jpa.defer-datasource-initialization=true
spring.jpa.open-in-view=false
management.endpoints.web.exposure.include=*
springdoc.swagger-ui.operationsSorter=method
#springdoc.paths-to-match=/people/**
Конечно, мой CRUD API подходит для /people PATH. Даже путь /profile/people кажется правильным.
Я должен что-то упустить... Спасибо за любую помощь.
2 ответа
Надеюсь, вам нужно попробовать этот URL.
http://localhost:8080/swagger-ui/index.html?configUrl=/v3/api-docs/swagger-config#
Мои конфигурации
Кроме того, я создал bean-компонент OpenAPI
@Bean
public OpenAPI customOpenAPI() {
return new OpenAPI()
.components(new Components())
.info(new Info().title("Test")
.description("Test Description")
.version("1.0.0"));
}
Над методом конечной точки API RestController я добавил следующие аннотации.
@Operation(summary = "Send Messages to Ibm Mq", description = "Send Message to the related ibm mq")
@ApiResponses(value = {
@ApiResponse(responseCode = "200", description = "Success Response",
content = @Content(schema = @Schema(implementation = SomeClass.class), mediaType = "application/json")),
@ApiResponse(responseCode = "500", description = "Internal System Error",
content = @Content(schema = @Schema(implementation = SomeClass.class), mediaType = "application/json")),
@ApiResponse(responseCode = "400", description = "Invalid Parameter Request",
content = @Content(schema = @Schema(implementation = SomeClass.class), mediaType = "application/json"))
})
Весь импорт исходил из пакета io.swagger.v3.oas.annotations.
Я предполагаю, что ваш родительский элемент весенней загрузки находится в версии 3+.
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
Вы должны использовать специальные зависимости Springdoc openapi для отдыха данных Spring, а именно:
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.1.0</version>
</dependency>
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-api</artifactId>
<version>2.1.0</version>
</dependency>