「Kotlin」@CookieValueアノテーションを使うサンプル
使用例
@GetMapping(“/login")
fun handle(@CookieValue(“JSESSIONID") cookie: String) {
// some code
}
Coding Changes the World
使用例
@GetMapping(“/login")
fun handle(@CookieValue(“JSESSIONID") cookie: String) {
// some code
}