Inflearn brand logo image

Inflearn Community Q&A

rnwjddns880556's profile image
rnwjddns880556

asked

Spring Boot Concepts and Utilization

Understanding the Embedded Web Server

java.util.concurrent.ExecutionException

Written on

·

431

0

자바 코드로 톰캣 만들때 계속 에러가 나는데 이 부분 그냥 넘어가도 상관없는 거겠지요?

public static void main(String[] args) throws LifecycleException {

Tomcat tomcat = new Tomcat();
tomcat.setPort(8080);

Context context = tomcat.addContext("/", "/");
tomcat.start();
}
javaspringspring-boot

Answer 1

0

whiteship님의 프로필 이미지
whiteship
Instructor

아마도  docbase를 "/"로 잡아서 에러가 나고 있을텐데요. 그걸 Temp 디렉토리 아래로 만들어 주면 잘 되긴 할텐데 그냥 넘어가셔도 되요.

rnwjddns880556's profile image
rnwjddns880556

asked

Ask a question