inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

토비의 스프링 부트 - 이해와 원리

SpringBootApplication

강의 초반에 나오는 코드에서 에러가 납니다.

551

작성자 없음

작성한 질문수 0

1

 0:05초 부분에서 applicationContext를 익명클래스가 아닌 람다 표현식으로 바뀌어져있는데, 이 부분을 그대로 따라 쳤는데, 에러가 납니다.

public static void main(String[] args) {
        AnnotationConfigWebApplicationContext applicationContext = onRefresh() -> {
                super.onRefresh();

                ServletWebServerFactory serverFactory = this.getBean(ServletWebServerFactory.class);
                DispatcherServlet dispatcherServlet = this.getBean(DispatcherServlet.class);

                WebServer webServer = serverFactory.getWebServer(servletContext -> {
                    servletContext.addServlet("dispatcherServlet", dispatcherServlet)
                            .addMapping("/*");
                });
                webServer.start();
        };
        applicationContext.register(HellobootApplication.class); // 구성정보가 있는 클래스 등록
        applicationContext.refresh();
    }
}

 

onRefresh() -> {

...

}

이 부분이 이해가 잘 되지 않는데, 어느 부분이 잘못된 건가요?

AnnotationConfigWebApplicationContext applicationContext = onRefresh() -> {
                super.onRefresh();

spring spring-boot spring-jdbc

답변 1

0

토비

강의에 나오는 코드는 다음과 같습니다. 앞부분 코드를 잘못 작성하신 것 같습니다.

AnnotationConfigWebApplicationContext applicationContext =
new AnnotationConfigWebApplicationContext() {

@Override

protected void onRefresh() {

super.onRefresh();

11강에서 cmd에서 spring shell에 $ init 하면 Fail 메세지

0

77

2

TestRestTemplate 을 통해 테스트 실행시 웹 요청 정보가 콘솔에 표시되지 않습니다.

0

86

1

섹션7. 자동구성 정보파일분리 강의 질문(@MyAutoConfiguration 붙힌 이유)

0

202

2

WebApplicationContext를 DispatcherServlet에 this로 넘기는 것

0

279

2

인프라 빈 구성 정보의 분리에서 EnableMyAutoConfiguration 질문드립니다.

0

211

2

질문드립니다.

0

234

2

spring boot 3.3.7로 학습중입니다.

0

372

2

Serverproperties 객체 생성 후 @Impor 어노테이션 사용 이유 용도

0

162

2

spring start io 에서 이제더이상 2.x버전은 지원하지 않는 것 같습니다.

1

299

2

Springboot 3.2 이상에서 파라미터 추론관련

0

920

4

binding error

0

223

3

Arrays.copyOf 메서드의 타입 세이프

1

156

2

MyOnClassCondition에 있는 matches method의 Invoke 횟수

1

234

3

인용구의 출처가 궁금합니다.

0

260

1

프로퍼티 빈의 후처리기 도입 AnnotationUtils의 사용

0

236

2

SimpleCacheConfiguration과 빈 등록

0

169

2

MyAutoConfigImportSelector 에서 생성자로 ClassLoader를 주입받을 수 있는 점

0

244

1

IntelliJ project jenerator spring initailizr

0

150

1

강의 자료 레퍼지토리에 업로드

0

216

1

강의자료

0

388

1

Hikari 라이브러리가 없으면 오류가 나는거 아닌가요

0

315

2

Tomcat 포트 프로퍼티 미설정시 랜덤 포트 설정 문의

0

477

5

@Import 로 Bean을 등록해야하는 기준이 뭔지 궁금합니다.

0

344

2

application.properties파일내 프로퍼티 이름

0

214

1