Notice
Recent Posts
Recent Comments
Tags
- 프로그래머스 고득점 kit
- 알고리즘 공부
- 바닥장식 파이썬
- spring 기초
- programmers
- 프로그래머스 알고리즘 고득점 kit
- 전화번호 목록 python
- 프로그래머스 레벨2
- 코딩테스트 연습
- 장고
- 프로그래머스 레벨1
- 백준 다이나믹프로그래밍
- 스프링 기초
- 코딩테스트
- 백준 dp
- 백준
- 알고리즘 문제
- 프로그래머스 level1
- 프로그래머스 전화번호 목록 python
- 프로그래머스
- Django
- 스프링 초보
- Spring 초보
- Django 기초
- dp 알고리즘
- 장고 기초
- 프로그래머스 전화번호 목록 파이썬
- 백준 바닥장식 python
- 코테 연습
- 코테
Archives
- Today
- Total
목록spring 의존 객체 주입 (1)
일일구름 IT
[Spring] 다양한 의존 객체 주입 (constructor-arg, property)
Spring 의존 객체 주입 Java와 다르게 Spring은 applicationContext.xml을 이용해 객체를 생성하고 생성자 값을 넣어준다. Java의 경우엔 다음과 같이 객체를 생성하지만 StudentAssembler assembler = new StudentAssembler() StudentRegisterService registerService = assembler.getRegisterService() Spring같은 경우엔 스프링 컨테이너라고 표현되는 applicationContext.xml에서 Bean 객체를 생성하고 다음과 같이 GenericXmlApplicationContext을 이용해 applicationContext.xml 파일을 읽어와 객체 생성과 초기화를 할 수 있다. Gen..
Spring
2023. 10. 29. 14:59