반응형
스프링부트 프로젝트 생성 후 어플리케이션을 실행시켰는데 에러없이 실행되자마자 종료되는 경우가 있다.
Process finished with exit code 0
라고 뜨며 어플리케이션이 바로 종료되어버린다.
스프링부트는 임베디드톰캣 기반으로 실행되는데 임베디드컨테이너의 클래스패스를 못잡아줘서 그런 것 같다.
따라서 메이븐에 다음과 같이 의존성을 추가해준다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
반응형
'Programming > Java,Spring' 카테고리의 다른 글
[ Springboot ] 스프링부트 SolrServerException 발생 with actuator (0) | 2019.07.26 |
---|---|
[ Springboot ] 스프링부트 기본 컨테이너 톰캣 제외시키기 (0) | 2019.07.25 |
[ JAVA ] HashMap에 데이터를 put을 할때마다 hashCode가 달라진다??? (0) | 2019.03.14 |
[ Java ] 자바 HashMap, ArrayList contains메소드 성능 비교 (0) | 2018.11.28 |
[ Spring ] 스프링에서 Zookeeper connect시 ClosedChannelException (0) | 2018.11.20 |