티스토리 뷰
728x90
반응형
<!-- https://mvnrepository.com/artifact/org.springdoc/springdoc-openapi-starter-webmvc-ui -->
<dependency>
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
<version>2.3.0</version>
</dependency>
package com.example.demo.config;
import io.swagger.v3.oas.models.Components;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Info;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@Configuration
public class SwaggerConfig {
@Bean
OpenAPI openAPI() {
return new OpenAPI()
.components(new Components())
.info(apiInfo());
}
private Info apiInfo() {
return new Info()
.title("Springdoc 테스트")
.description("Springdoc을 사용한 Swagger UI 테스트")
.version("1.0.0");
}
}
@GetMapping("/requestParam")
public String requestParam(
@Parameter(description = "이름") @RequestParam(required = false) String name,
@RequestParam String email
) {
return String.format("name=%s, email=%s", name, email);
}
http://localhost:8080/swagger-ui/index.html
728x90
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- jstl(java standard tag library)-core
- java.sql
- 스프링 시큐리티(spring security)
- 특정 문자를 기준으로 자르기
- nl2br
- .submit()
- React
- REST API
- 스프링 프레임워크(spring framewordk)
- System.Diagnostics
- In App Purchase
- 인텔리제이(intellij)
- MainActor
- error-java
- 스프링 프레임워크(spring framework)
- 상품 등록
- 스프링 시큐리티(spring security)-http basic 인증
- system.io
- 문자 자르기
- 람다식(lambda expression)
- 진수 변환
- 표현 언어(expression language)
- java web-mvc
- 제품 등록
- 메이븐(maven)
- await
- java-개발 환경 설정하기
- java 키워드 정리
- jsp 오픈 소스
- jstl(java standard tag library)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함