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
- CKA 기출문제
- minikube
- 코틀린 코루틴의 정석
- CKA
- AI
- IntelliJ
- kotlin
- Pinpoint
- APM
- Java
- AWS EKS
- Spring
- Elasticsearch
- kotlin coroutine
- kotlin querydsl
- Kubernetes
- 정보처리기사실기 기출문제
- MySQL
- 공부
- CloudWatch
- 기록으로 실력을 쌓자
- 정보처리기사 실기 기출문제
- Linux
- kotlin spring
- 정보처리기사 실기
- mysql 튜닝
- aws
- 오블완
- PETERICA
- 티스토리챌린지
Archives
- Today
- Total
목록2024/05/24 (1)
피터의 개발이야기
[kotlin] Springboot - RestController 생성 및 WebMvcTest
ㅁ 들어가며ㅇ spring boot tutorial를 참조하여 나만의 확장 프로그램 만들기를 구현해 보았습니다. ㅁ RestController 생성@RestController@RequestMapping("/api/article")class ArticleController(private val repository: ArticleRepository) { @GetMapping("/") fun findAll() = repository.findAllByOrderByAddedAtDesc() @GetMapping("/{slug}") fun findOne(@PathVariable slug: String) = repository.findBySlug(slug) ?: throw ResponseStatusEx..
Programming/Kotlin
2024. 5. 24. 10:10