이번 장은 init / load 과정을 설명한 Tomcat : 사용자 요청을 멀티스레드로 처리하는 방법(1) 에 이어서 start 메서드의 동작 방식에 대해 알아보겠습니다. /** Bootstrap.class */ public void start() throws Exception { if (this.catalinaDaemon == null) { this.init(); } Method method = this.catalinaDaemon.getClass().getMethod("start", (Class[])null); method.invoke(this.catalinaDaemon, (Object[])null); } load메서드와 마찬가지로 bootstrap의 start 메서드는 catalina의 start ..