{"id":18624483,"url":"https://github.com/litsynp/spring-boot-kotlin-lec","last_synced_at":"2026-04-19T14:31:59.575Z","repository":{"id":109731886,"uuid":"521846537","full_name":"litsynp/spring-boot-kotlin-lec","owner":"litsynp","description":"[Inflearn] Kotlin으로 개발하는 Spring Boot Web MVC","archived":false,"fork":false,"pushed_at":"2022-08-07T08:24:59.000Z","size":80,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T07:06:52.817Z","etag":null,"topics":["gradle","junit","kotlin","spring-boot","spring-validation"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/litsynp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-08-06T04:31:39.000Z","updated_at":"2022-08-07T02:39:49.000Z","dependencies_parsed_at":"2023-06-11T07:00:48.488Z","dependency_job_id":null,"html_url":"https://github.com/litsynp/spring-boot-kotlin-lec","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/litsynp/spring-boot-kotlin-lec","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litsynp%2Fspring-boot-kotlin-lec","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litsynp%2Fspring-boot-kotlin-lec/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litsynp%2Fspring-boot-kotlin-lec/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litsynp%2Fspring-boot-kotlin-lec/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/litsynp","download_url":"https://codeload.github.com/litsynp/spring-boot-kotlin-lec/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/litsynp%2Fspring-boot-kotlin-lec/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32009840,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gradle","junit","kotlin","spring-boot","spring-validation"],"created_at":"2024-11-07T04:29:12.754Z","updated_at":"2026-04-19T14:31:59.553Z","avatar_url":"https://github.com/litsynp.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \\[Inflearn\\] Kotlin으로 개발하는 Spring Boot Web MVC\n\n\\[Inflearn\\] Kotlin으로 개발하는 Spring Boot Web MVC 강의 내용에 따른 예제를 진행한다.\n\n## Versions\n\n- Spring Boot 2.7.2\n\n- JDK 8\n\n- Kotlin 1.6.21\n\n- Gradle 7.5\n\n## Contents\n\nKotlin을 이용해 Spring Boot로 간단한 API를 구현해본다.\n\n- GET, POST, PUT, DELETE mappings\n\n  - [`com.litsynp.demo.controller`](https://github.com/litsynp/spring-boot-kotlin-lec/tree/main/src/main/kotlin/com/litsynp/demo/controller)\n\n- Bean validations with `spring-boot-starter-validation`\n\n  - [`com.litsynp.demo.model.http.UserRequest`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/main/kotlin/com/litsynp/demo/model/http/UserRequest.kt)\n\n- Custom LocalDateTime validation annotator for DTO\n\n  - [`com.litsynp.demo.annotation.StringFormatDateTime`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/main/kotlin/com/litsynp/demo/annotation/StringFormatDateTime.kt)\n  - [`com.litsynp.demo.validator.StringFormatDateTimeValidator`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/main/kotlin/com/litsynp/demo/validator/StringFormatDateTimeValidator.kt)\n\n- Global and class-level exception handler using `@RestControllerAdvice` with custom error response DTO\n\n  - [`com.litsynp.demo.advice.GlobalControllerAdvice`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/main/kotlin/com/litsynp/demo/advice/GlobalControllerAdvice.kt)\n  - [`com.litsynp.demo.controller.exception.ExceptionApiController`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/main/kotlin/com/litsynp/demo/controller/exception/ExceptionApiController.kt)\n\n- Unit tests with MockMvc\n  - [`com.litsynp.demo.controller.exception.ExceptionApiControllerTest`](https://github.com/litsynp/spring-boot-kotlin-lec/blob/main/src/test/kotlin/com/litsynp/demo/controller/exception/ExceptionApiControllerTest.kt)\n\n## REF\n\n[Inflearn: Kotlin으로 개발하는 Spring Boot Web MVC](https://www.inflearn.com/course/%EC%8A%A4%ED%94%84%EB%A7%81%EB%B6%80%ED%8A%B8-%EC%BD%94%ED%8B%80%EB%A6%B0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitsynp%2Fspring-boot-kotlin-lec","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flitsynp%2Fspring-boot-kotlin-lec","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flitsynp%2Fspring-boot-kotlin-lec/lists"}