작성
·
242
0
안녕하세요.
접근제한자를 작성하지 않으면 자동으로 default로 되는것으로 알고있는데
AutoAppConfig의 memberRepository()메서드를
package hello.core;
import hello.core.member.MemberRepository;
import hello.core.member.MemoryMemberRepository;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.FilterType;
/*
@ComponentScan(
basePackages = "hello.core.member",
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class)
)
basePackage를 안주면 소스의 패키지인 hello.core 하위를 전부 search한다.
*/
@Configuration
@ComponentScan(
basePackages = "hello.core.member",
excludeFilters = @ComponentScan.Filter(type = FilterType.ANNOTATION, classes = Configuration.class)
)
public class AutoAppConfig {
@Bean(name = "memoryMemberRepository")
default MemberRepository memberRepository(){
return new MemoryMemberRepository();
}
}
처럼 고치면 에러가나서 혹시 이유를 알 수 있을까요?
답변 1
1
안녕하세요. 이명학님, 공식 서포터즈 OMG입니다.
접근지시자의 생략은 default라는 상태를 얘기하는 것으로 자바에서의 예약어가 아니였습니다.
그래서 기본적인 문법책이나 인터넷 글 등의 설명을 보아도 default임을 명시하기 위한 접근지시자 사용에 대한 것은 찾아보실 수 없을꺼에요.
하지만 자바8부터 default 라는 키워드가 예약어로 되었는데요,
인터페이스에서 사용합니다.
이 부분도 공부해보시면 어떠한 이유로 탄생했고, 어떻게 동작하는지, 비교대상은 무엇이 되는지 등 찾아보시면 많은 것을 배우실 수 있을거라 생각합니다. :)
참고)