일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바스크립트
- X보다 작은 수
- if문 사용해보기
- 1%d
- Mist
- 10871
- 10817
- 백준
- 이더리움
- 블록 체인
- Remix
- 1110
- 솔리디티
- 알고리즘 문제풀이
- 그대로 출력하기
- 2448
- 세 수
- Dapp
- 시험 성적
- 가상 화폐
- 1546
- 별 찍기 - 11
- 1065
- for문 사용해보기
- 더하기 사이클
- 평균은 넘겠지
- Baekjoon
- 단계별로 풀어보기
- 비트 코인
- 함수 사용하기
- Today
- Total
목록Technology/프레임워크 (4)
블링블링 범블링
root-context.xml
pom.xml 4.0.0org.testwebstudy01war1.0.0-BUILD-SNAPSHOTatlassianhttps://maven.atlassian.com/3rdparty/1.84.3.3.RELEASE3.2.5.RELEASE1.6.101.6.6org.springframeworkspring-context${org.springframework-version}commons-loggingcommons-logging org.springframeworkspring-webmvc${org.springframework-version} org.springframework spring-jdbc ${org.springframework-version} org.springframework spring-test ${org...
Spring: Spring을 사용하게 되면 스프링 자체 컨테이너가 있음. IOC (제어의 역행) - 두 가지 개념 1. D.I (Dependency Injection) : Controller, Service, dao 사이의 객체 생성 관리를 Spring container에서 해줌- Constructor : 의존관계 주입을 생성자를 통해 수행- Setter : 의존관계 주입을 Setter 메서드를 통해 수행2. D.L (Dependency Lookup) : Spring Container 에서 관리하고 있는 bean을 get하는 작업 Class를 만들고 Spring Container에 던지면 Bean으로 관리-- 두 가지 설정이 필요1. xml - 스키마 기반 설정2. @annotation Spring을 통..