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
- enum
- awsconsole
- 두개리스트비교
- wordpress블로그
- 지옥같은git
- 권한정책
- 중복제거
- Spring
- hashset
- enumtype
- Annotation
- db
- 리스트교집합
- anymatch메서드
- 널포인터에러
- mybatis
- 3tierarchitecture
- instance생성
- ansible
- 리스트비교
- route53
- WordPress
- string_agg()
- PostgreSQL
- AWS
- 리스트합집합
- lightsail
- 리스트차집합
- Java
- list중복제거
Archives
- Today
- Total
Anyway
[Spring] @RequestMapping이란? - Annotation
Example@RequestMapping("sample/dept")public class DeptController { private final DeptService deptService; @GetMapping @Operation(summary = "dept 리스트") public CommonResult list(DeptSearchReqDto deptSearchReqDto) { return deptService.list(deptSearchReqDto); }}@RequestMapping - Annotation이 주석을 사용하여 @RequestMapping 요청을 Controller Method에 매핑할 수 있다. 예시 코드를 적용해본다면 http://ip:port/s..
Java/Spring
2024. 8. 22. 13:28