Notice
Recent Posts
Recent Comments
Tags
- 프로그래머스 레벨1
- 스프링 초보
- 장고 기초
- programmers
- 프로그래머스 전화번호 목록 python
- Django 기초
- 프로그래머스 알고리즘 고득점 kit
- 알고리즘 공부
- 코테 연습
- 백준 다이나믹프로그래밍
- 프로그래머스 level1
- Spring 초보
- 알고리즘 문제
- spring 기초
- 장고
- 코딩테스트 연습
- 프로그래머스 전화번호 목록 파이썬
- 프로그래머스 고득점 kit
- dp 알고리즘
- Django
- 백준 바닥장식 python
- 백준 dp
- 프로그래머스
- 스프링 기초
- 코테
- 프로그래머스 레벨2
- 백준
- 코딩테스트
- 전화번호 목록 python
- 바닥장식 파이썬
Archives
- Today
- Total
목록init-method (1)
일일구름 IT
[Spring] InitializingBean, DisposableBean, init-method, destroy-method
InitializingBean, DisposableBean Bean 객체의 생성 시점 또는 소멸 시점에 어떠한 작업을 하고싶은 경우, InitializingBean 인터페이스와 DisposableBean 인터페이스의 메소드인 afterPropertiesSet, destroy를 구현하고 각 메소드 안에 원하는 작업을 기술해준다. InitializingBean, DisposableBean 인터페이스를 사용할때는 해당 java 파일에 org.springframework.beans.factory.InitializingBean, org.springframework.beans.factory.DisposableBean을 import 해주고 class에 implements를 통해 인터페이스를 사용할 수 있도록 한다. ..
Spring
2023. 11. 28. 20:51