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 |
Tags
- 정보처리기사 실기 기출문제
- APM
- Kubernetes
- kotlin coroutine
- kotlin querydsl
- golang
- 오블완
- CKA
- Spring
- 정보처리기사실기 기출문제
- 공부
- CKA 기출문제
- docker
- Pinpoint
- 티스토리챌린지
- tucker의 go 언어 프로그래밍
- AI
- AWS EKS
- kotlin
- PETERICA
- Java
- CloudWatch
- 코틀린 코루틴의 정석
- 기록으로 실력을 쌓자
- go
- minikube
- mysql 튜닝
- Linux
- Elasticsearch
- aws
Archives
- Today
- Total
목록kotlin webmvctest (1)
피터의 개발이야기

ㅁ 들어가며ㅇ 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