아래와 같은 에러 메세지를 출력하면서 정상적으로 Context가 올라오지 않는 문제 발생아래의 에러 메세지 중에서 가장 중요한 부분은 bold 처리된 부분이다. 처리 방법은 다음과 같다. /src/main/resources/application.properties 에 DB 관련 properties 추가 spring.datasource.url=jdbc:mysql://localhost:3306/[DB명]spring.datasource.username=[DB접속 아이디]spring.datasource.password=[DB접속 패스워드]spring.datasource.driver-class-name=com.mysql.jdbc.Driver 참고로 위의 property 명을 어떻게 알아내는가가 궁금할 것이다.미리..