작성
·
273
0
테스트를 돌리면 정상 동작은 하는데,
AutoAppConfig.class 부분에서 인텔리 제이가 아래와 같은 오류를 냅니다.
Formal varargs element type is inaccessible here
검색해도 잘 모르겠어서 문의 드립니다.
미리 답변 감사 드립니다 :)
public class AutoAppConfigTest {
@Test
void basicScan() {
ApplicationContext ac = new
AnnotationConfigApplicationContext(AutoAppConfig.class);
MemberService memberService = ac.getBean(MemberService.class);
assertThat(memberService).isInstanceOf(MemberService.class);
}
}
답변 1
0
안녕하세요. eze님
전체 프로젝트를 압축해서 구글 드라이브로 공유해서 링크를 남겨주세요.
구글 드라이브 업로드 방법은 다음을 참고해주세요.
https://bit.ly/3fX6ygx
주의: 업로드시 권한 문제 꼭 확인해주세요
추가로 다음 내용도 코멘트 부탁드립니다.
1. 실행 방법을 알려주세요.
2. 어떻게 문제를 확인할 수 있는지 자세한 설명을 남겨주세요.
감사합니다