bean(2)
-
@Configuration 스프링빈 등록
객체를 스프링 빈으로 등록할때 @Service, @Repository 와같이 annotation으로 스프링빈 등록 방법이 있다. 이 방법 말고 @Configuration 으로 스프링빈 등록 방법이 있다. package groupInfo.study.service;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import groupInfo.study.repository.MemberRepository;import groupInfo.study.repository.MemoryMemberRepository;@Configurationpublic class Sprin..
2024.05.14 -
@Configuration 스프링빈 등록
객체를 스프링 빈으로 등록할때 @Service, @Repository 와같이 annotation으로 스프링빈 등록 방법이 있다. 이 방법 말고 @Configuration 으로 스프링빈 등록 방법이 있다. package groupInfo.study.service;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import groupInfo.study.repository.MemberRepository;import groupInfo.study.repository.MemoryMemberRepository;@Configurationpublic class Sprin..
2024.05.14