Spring 최초 실행 시
아래와 같은 메시지가 나올 경우
***************************
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
=> 위와 같은 메시지가 나오면
application.properties (이클립스라면 src/main/resources 안에 있는 파일) 에 아래와 같이 DB 접속 정보를 입력 합니다. (저는 mysql 이어서 아래와 같이 설정 하였습니다.)
spring.datasource.url=jdbc:mysql://localhost:3306/test?autoReconnect=true
spring.datasource.username=root
spring.datasource.password=password123!
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
'SPRING' 카테고리의 다른 글
[ SPRING ] eclipse에서 Spring boot 프로젝트 만들기 (0) | 2021.09.27 |
---|---|
Spring 스케쥴러 (Quartz) (0) | 2010.04.07 |
Spring FrameWork 에서 Log4J 설정 (0) | 2010.04.01 |
Spring Controller 종류3 (AbstractController) (0) | 2010.04.01 |
Spring Controller 종류2 (MultiactionController) (0) | 2010.03.31 |
댓글