Spring Boot 초기 프로젝트를 Initializr를 통해서 생성 한 뒤 최초 실행 할 경우 다음과 같은 오류가 발생하면서
정상적으로 실행이 되지 않을 경우.
***************************
APPLICATION FAILED TO START
***************************
Description:
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
Reason: Failed to determine a suitable driver class
Action:
Consider the following:
If you want an embedded database (H2, HSQL or Derby), please put it on the classpath.
If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active).
application.properties 에 다음과 같이 JDBC url을 추가해준다. [Mysql 일 경우] (Oracle이나 다른 DB는 응용하세요.)
# DataSource
spring.datasource.url=jdbc:mysql://localhost:3306/[DB스키마명]?autoReconnect=true
spring.datasource.username=[DB접속Id]
spring.datasource.password=[DB접속Password]
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
'spring-project' 카테고리의 다른 글
Spring MVC Request 객체는 매번 새로 생성 됨. (0) | 2020.01.02 |
---|---|
Spring Boot 에서 JSP 사용하기 위한 라이브러리 추가 (0) | 2019.09.13 |
Spring Security를 이용한 Basic Authentication (0) | 2019.03.01 |
REST API 인증 방법 (0) | 2019.03.01 |
Spring Security Custom UserDetailsService 구현하기 (0) | 2019.02.24 |