THIS!
안녕하세요, 자바 기본 적인 질문 한가지만 드릴게요...!
public class HellobootApplication {
public static void main(String[] args) {
GenericWebApplicationContext applicationContext = new GenericWebApplicationContext() {
@Override
protected void onRefresh() {
super.onRefresh();
ServletWebServerFactory serverFactory = new TomcatServletWebServerFactory();
WebServer webServer = serverFactory.getWebServer(servletContext -> {
servletContext.addServlet("dispatcherServlet",
new DispatcherServlet(this))
.addMapping("/*");
});
webServer.start();
}
};
applicationContext.registerBean(HelloController.class);
applicationContext.registerBean(SimpleHelloService.class);
applicationContext.refresh();
}
}
여기서 this는 HellobootApplication class가 아닌, applicationContext 를 지칭 하는게 맞을까요..?
매번 this가 조금씩 헷갈리네요 ,,,,
이상한 질문 죄송합니다....!
답변 1
1
익명 클래스 내부에서 쓰는 this는 익명 클래스에 의해서 만들어지는 오브젝트를 가리킵니다.
따라서 위 코드에서 this는 다음 익명 클래스 내부에서 사용되므로 GenericWebApplicationContext 타입의 오브젝트가 됩니다.
new GenericWebApplicationContext() {
}
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





