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
- kotlin
- AWS EKS
- CKA
- Spring
- 정보처리기사실기 기출문제
- PETERICA
- minikube
- 정보처리기사 실기
- CloudWatch
- aws
- Pinpoint
- 티스토리챌린지
- 오블완
- 기록으로 실력을 쌓자
- IntelliJ
- kotlin querydsl
- Elasticsearch
- 공부
- 정보처리기사 실기 기출문제
- Linux
- Kubernetes
- kotlin coroutine
- 코틀린 코루틴의 정석
- Java
- CKA 기출문제
- mysql 튜닝
- APM
- MySQL
- kotlin spring
- AI
Archives
- Today
- Total
목록kotiln spring (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