pricelees 9f8ee8cc02 [#18] 코드 정리 및 일부 컨벤션 통일 (#19)
<!-- 제목 양식 -->
<!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) -->

## 📝 관련 이슈 및 PR

**PR과 관련된 이슈 번호**
- #18

##  작업 내용
<!-- 어떤 작업을 했는지 알려주세요! -->
- 기존 자바와의 호환성을 위해 사용하던 \@Jvm.. 어노테이션 및 팩토리 메서드 제거
- 기존에 get, find, save 등으로 산재되어 있던 메서드 컨벤션 통일
- 일부 API endpoint 수정
- 테이블 이름 단수 -> 복수 수정

추가적으로 개선이 필요한 점은 있지만, 이는 기능 개선 과정에서 수정할 예정

## 🧪 테스트
<!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! -->
각 작업 마다 전체 테스트 수행 및 정상 동작 확인

## 📚 참고 자료 및 기타
<!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! -->

Reviewed-on: #19
Co-authored-by: pricelees <priceelees@gmail.com>
Co-committed-by: pricelees <priceelees@gmail.com>
2025-07-22 09:05:31 +00:00

49 lines
1.2 KiB
Kotlin

package roomescape.view
import org.springframework.stereotype.Controller
import org.springframework.web.bind.annotation.GetMapping
import org.springframework.web.bind.annotation.PathVariable
import org.springframework.web.bind.annotation.RequestMapping
import roomescape.auth.web.support.Admin
import roomescape.auth.web.support.LoginRequired
@Controller
class AuthPageController {
@GetMapping("/login")
fun showLoginPage(): String = "login"
}
@Controller
@RequestMapping("/admin")
class AdminPageController {
@Admin
@GetMapping
fun showIndexPage() = "admin/index"
@Admin
@GetMapping("/{page}")
fun showAdminSubPage(@PathVariable page: String) = when (page) {
"reservation" -> "admin/reservation-new"
"time" -> "admin/time"
"theme" -> "admin/theme"
"waiting" -> "admin/waiting"
else -> "admin/index"
}
}
@Controller
class ClientPageController {
@GetMapping("/")
fun showPopularThemePage(): String = "index"
@LoginRequired
@GetMapping("/reservation")
fun showReservationPage(): String = "reservation"
@LoginRequired
@GetMapping("/reservation-mine")
fun showReservationMinePage(): String = "reservation-mine"
}