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 |
Tags
- #Gradle Multi project with IntelliJ
- Lambda
- 년말
- Spring Boot
- java
- 방법론
- #단축키
- 토익
- 평가인증
- WebJar
- Microservices
- 분석 작업
- #화면캡쳐 #macOS
- #정규표현식
- jv
- docker #docker tutorial
- 프로젝트 시작
- 2010
- #Microservice
- 감사
- bootstrap
Archives
- Today
- Total
사랑해 마니마니
도메인 디자인 하기 본문
Domain 추가 - User: immutable 만들기
여기서 중요한 것은 getter로 만 접근 가능하도록 User class를 final로 만들기
package microservices.book.multiplication.domain; import lombok.EqualsAndHashCode; import lombok.Getter; import lombok.RequiredArgsConstructor; import lombok.ToString; @RequiredArgsConstructor @Getter @ToString @EqualsAndHashCode public final class User { private final String alias; protected User() { alias = null; } }
Domain 추가
package microservices.book.multiplication.domain; import lombok.*; /** * Identifies the attempt from a {@link User} to solve a * {@link Multiplication}. */ @RequiredArgsConstructor @Getter @ToString @EqualsAndHashCode public final class MultiplicationResultAttempt { private final User user; private final Multiplication multiplication; private final int resultAttempt; MultiplicationResultAttempt() { user = null; multiplication = null; resultAttempt =- -1; } }
MultiplicationResultAttempt도 immutable class
'spring boot in action' 카테고리의 다른 글
macOS IntelliJ 단축키 (0) | 2018.07.24 |
---|---|
Business Logic Layer 추가하기 (0) | 2018.05.01 |
스프링 부트 마이크로서비스 - 도메인 (0) | 2018.04.21 |
3Tier 로 고치기 (0) | 2018.04.21 |
Microservice @spring boot (0) | 2018.04.21 |
Comments