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 | 31 |
Tags
- intern
- docker mongodb
- jwt example
- String Pool
- spring-boot-maven-plugin
- HHH000104
- 기본 Manifest 속성이 없습니다
- Constants pool
- install mongodb docker
- filter ordering
- string comparison
- springboot jwt example
- angular jwt
- String Constants Pool
- springboot jwt
- spring filter ordering
- JPA
- springboot-angular-jwt
- mongodb install ec2
- JWT
- jpa pagination
- jvm 모델
- jvm memory model
- jvm 메모리 구조
- jvm memory structure
- jwt token
- springboot maven plugin
- springboot mongodb config
- docker mongodb install
- spring jwt
Archives
- Today
- Total
목록Kotlin (1)
개발블로그
kotlin data class multiple constructor
kotlin의 data class는 기본적으로 constructor, getter, setter를 생성해준다. 따라서 lombok library를 쓰는 것과 같이 루틴한 코드를 생략할 수 있다. 이 때 생성되는 constructor 스펙은 data class에 정의한 모든 field를 주입받는 형태이다. 기본 생성자 스펙 외의 다른 스펙의 생성자를 두고 싶다면 다음과 같이 정의한다. data class ResponseEntity( val code : Int ,var message: String? ,var payload: T?){ constructor(code: Int) : this(code, "", null) constructor(code: Int, message: String?) : this(code ..
Kotlin
2019. 12. 23. 15:12