Skip to content

bakery-blueprint/different-dimension-derby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Different-Dimension-Derby

ddd

Books

  • DDD START! 도메인 주도 설계 구현과 핵심 개념 익히기

books

AnemicDomainModel (빈약한도메인)

CUPID

우아한 객체지향

객체지향 생활 체조 원칙

일급 콜렉션

  • as-is
Map<String, String> map = new HashMap<>();
map.put("1", "A");
map.put("2", "B");
map.put("3", "C");
  • to-be
public class GameRanking {

    private Map<String, String> ranks;

    public GameRanking(Map<String, String> ranks) {
        this.ranks = ranks;
    }
}