PENEKhun / springdog

(개발중) 캡스톤 디자인 - SW의 안전성 지원을 위한 서비스형 보안 라이브러리 개발
Apache License 2.0
0 stars 0 forks source link

Resolve broken hrefs at the sidebar #42

Closed PENEKhun closed 1 month ago

PENEKhun commented 1 month ago

org.springframework.boot.autoconfigure.AutoConfiguration.imports에서 추가되는 configuration class들의 빈 등록이 좀 이상한데...? 스프링 EL에선 적용이 안되네?? 빈등록 시기가 다른건가? 아래 코드도 fail뜸

  @ParameterizedTest
  @ValueSource(strings = {"springdogProperties"})
  @DisplayName("Should register of beans generated by annotation processing")
  void checkGeneratedClassAppliedAtSpringContainer(String targetBean) {
    // when
    boolean beanExist = applicationContext.containsBean(targetBean);

    // then
    assertThat(beanExist).isTrue();
  }

일단은 springdog enabler에서 shared경로 빈 등록하도록 하겠음...