일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Spring Boot
- jsp
- 요리
- ubuntu
- db
- elasticsearch
- laravel
- Spring
- AWS
- 맛집
- jenkins
- Oracle
- it
- Web Server
- javascript
- redis
- IntelliJ
- devops
- springboot
- tool
- Design Patterns
- MySQL
- Spring Batch
- linux
- Gradle
- php
- java
- Git
- JVM
- ReactJS
Archives
- Today
- Total
아무거나
[spring] DI(Dependency Injection) 활용 본문
반응형
[spring] DI(Dependency Injection) 활용
1. 의존관계
DI는 Dependency Injection의 약자로 -> "의존주입" 이라 한다.
# 생성자를 통한 주입
[Student.java]
public class Student {
private String name;
....
public Student(String name, ....) {
this.name = name;
......
}
}
[applicationCTX.xml]
<bean id="student1" class="com.javalec.ex.Student">
// Setter을 이용할 때
<property name="name" value="홍길동" />
// 생성자를 이용할 때
<constructor-arg value="홍길동" />
....
</bean>
반응형
'Java & Kotlin > Spring' 카테고리의 다른 글
[spring] 생명주기(life cycle)와 범위 (0) | 2019.12.25 |
---|---|
[spring] DI 설정 방법 (0) | 2019.12.25 |
[spring] DI(Dependency Injection) - 2 (0) | 2019.12.25 |
[spring] DI(Dependency Injection) - 1 (0) | 2019.12.25 |
[spring] 스프링 프로젝트 생성 (0) | 2019.12.24 |
Comments