개발/springboot
[springboot] 스프링부트 Unable to start embedded Tomcat 에러 해결 방법
효벨
2021. 11. 3. 03:00
728x90
반응형
[springboot] 스프링부트 Unable to start embedded Tomcat 에러 해결 방법
spring boot 로
프로젝트를 진행하고
배포를 하다보면
Unable to start embedded Tomcat 과 같은
에러가 발생하는 경우가 있습니다.
그럴때는
pom.xml 파일에
아래와 같이 dependency 를
추가해주시면 됩니다!
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
참고들 하세요!
반응형