kotlin
-
Kotlin - Spring JPA entity 매개변수 없는 생성자 플러그인kotlin 2024. 3. 19. 22:05
Kotlin으로 Spring JPA를 사용하면 Entity 클래스를 만들 때 이슈에 대해서 알아보겠습니다. Hibernate Entity 가이드를 보면 Entity의 조건이 나와 있습니다. https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#entity Hibernate ORM User Guide Starting in 6.0, Hibernate allows to configure the default semantics of List without @OrderColumn via the hibernate.mapping.default_list_semantics setting. To switch t..
-
Kotlin - 기본 문법kotlin 2024. 2. 21. 22:05
Kotlin은 자바와 호환되는 현대적인 JVM 언어로, 간결하고 안전한 코드 작성을 지원합니다. Kotlin의 기본 문법에 대한 간단한 소개입니다. 1. 변수 선언과 할당 val immutableVariable: Int = 10 // 변경 불가능한 변수 var mutableVariable: String = "Hello" // 변경 가능한 변수 2. 타입 추론 Kotlin 컴파일러는 대부분의 경우에서 변수의 타입을 추론할 수 있습니다. val number = 42 // Int로 추론됨 3. 조건문 val x = 10 val y = 20 val max = if (x > y) x else y 4. 반복문 for (i in 1..5) { println(i) } // 리스트를 반복하는 경우 val list = l..