반응형
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
- html
- Django
- Dependency Injection
- DI
- Django column 값 가져오기
- html cell size
- Django 특정 값 가져오기
- html cell
- table tag
- Spring
- table cell size
- Dependency
Archives
- Today
- Total
목록Dependency (1)
emluy 개발 일기
Dependency Injection (의존성 주입)?
Dependency? 의존대상 B가 변하면, 그것이 A에 영향을 미친다. -- 이일민, 토비의 스프링 3.1, 에이콘(2012), p113 Dependency 추상화 버거 셰프, 버거 레시피 관계로 Dependency 추상화 개념을 알아보자. class BurgerChef { private HamBurgerRecipe hamBurgerRecipe; public BurgerChef() { hamBurgerRecipe = new HamBurgerRecipe(); } } 버거 셰프가 만들어야할 버거 레시피는 버거 셰프 생성자에 의해 자동으로 HamBurgerRecipe가 된다. 이 때, 버거 셰프는 햄버거 레시피에 의존한다. 다른 버거 레시피를 갖고 싶다면 new HamBurgerRecipe를 다른 버거 레시..
웹 개발/Spring
2022. 11. 14. 13:51