layout : post
title : "외부 라이브러리 Bean 등록"
category : Spring
@Component
public class Test {
@Bean
public Library getLibrary (){
return new Library();
}
}
외부 클래스에는 Component를 지정해 줄수 없기 때문에 Bean을 사용하여 등록한다.
빈생성은 @Component로도 가능한데 외부 라이브러리는 직접 수정하여 @Component를 넣어줄수없다.
'IT > Spring' 카테고리의 다른 글
2021-06-10-TimeZone-setting (0) | 2023.02.28 |
---|---|
2021-06-09-Memoery-setting (0) | 2023.02.28 |
2021-06-04-Controller-interface (0) | 2023.02.28 |
2021-05-24-SpringBoot-Authentication-null (0) | 2023.02.28 |
2021-05-13-Message-properties-특수문자 (0) | 2023.02.28 |
댓글