Notice
Recent Posts
Recent Comments
Tags
- 백준 선수과목 python
- 장고
- 백준 14567 파이썬
- 프로그래머스 레벨1
- Spring 초보
- 백준 선수과목
- 프로그래머스 level1
- 알고리즘 공부
- dp 알고리즘
- 알고리즘 문제
- 백준 선수과목 파이썬
- 코딩테스트
- 백준 14567
- 코테
- 프로그래머스
- Django 기초
- 백준 선수과목 14567
- 코딩테스트 연습
- 백준 14567 python
- programmers
- 백준 다이나믹프로그래밍
- 백준
- spring 기초
- 백준 dp
- 코테 연습
- 위상정렬 파이썬
- 스프링 기초
- 스프링 초보
- 장고 기초
- Django
Archives
- Today
- Total
목록Spring AnnotationConfigApplicationContext (1)
일일구름 IT
[Spring] xml파일을 Java파일로 변환하기 (@Configration, @Bean, AnnotationConfigApplicationContext)
xml 파일을 Java 파일로 변환하기 기존에는 스프링 컨테이너를 만들어주기 위해 xml 파일을 이용해서 객체를 생상하고 설정 및 주입을 해주었습니다. 이를 xml을 쓰지 않고 anotation을 이용해 xml 대신에 java 파일로 스프링 컨테이너를 만들 수 있습니다. xml, java 파일 변환 코드 예제 // XML 파일 //Java 파일 import org.springframework.context.annotation.Configuration; @Configration public class MemberConfig { @Bean public StudentDao studentDao() { return new StudentDao(); } @Bean public StudentRegisterService..
Spring
2023. 11. 30. 21:34