main] o.s.b.d.LoggingFailureAnalysisReporter   : 

***************************
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).

참고: https://hodolee246.tistory.com/9

 

Spring Boot DB 오류해결

0. Github https://github.com/hodolee246/on-my-own/tree/master/DBConfig 1. 개요 Spring Boot 프로젝트에서 오류 원인 및 해결방법 "Failed to configure a DataSource: 'url' attribute is not specified and..

hodolee246.tistory.com

추후 해당 블로그 보면서 정리

Posted by 知彼知己百戰不殆
,

프로젝트 Team -> Share Project 선택

Use or create repository in parent folder of project 체크

밑에 Create Repository가 활성화되면 버튼 눌러줌.

이제 git staging에서 프로젝트를 push해주면 끝

Posted by 知彼知己百戰不殆
,

Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

mySql JUnit 테스트 class를 만들어서 테스트 중 해당 에러 발생.

jdbc 드라이버는 2가지 종류.

1. com.mysql.jdbc.Driver
2. com.mysql.cj.jdbc.Driver

1번은 deprecated이므로 2번을 써야함.

Posted by 知彼知己百戰不殆
,