Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- http
- pointcut
- QueryDSL
- SpringBoot
- java
- Servlet
- 그리디
- Proxy
- springdatajpa
- Spring Boot
- transaction
- Greedy
- JDBC
- 백준
- 스프링 핵심 기능
- 인프런
- Exception
- 자바
- db
- kotlin
- AOP
- Thymeleaf
- Android
- spring
- jpa
- JPQL
- 스프링
- 알고리즘
- 김영한
- 스프링 핵심 원리
Archives
- Today
- Total
목록SprintBoot (1)
개발자되기 프로젝트
Swagger 설정
1. @Api 기존에 작성한 controller에 @Api(tags = {""}를 추가하자. ""안에 간단한 tag를 입력할 수 있는데. swagger ui에 보여지는 이름?이라고 보면 된다. @Api(tags = {"API 정보를 제공하는 Controller"}) @RestController @RequestMapping("/api") public class Controller { @GetMapping("/hello") public String hello(){ return "hello"; } } swagger-ui를 새로고침하면 이름이 바뀐걸 볼 수 있다. 2. @ApiParam controller내에 pathVariable, query parameter을 변수로 받아 두 값을 더하는 method를 작성..
Spring Boot
2021. 5. 30. 12:32