[Spring Boot] "Failed to configure a DataSource" 해결


[Spring Boot]

문제상황: Spring Boot를 사용하여 웹 서버를 개발하고, 다음과 같은 코드를 작성하여 데이터베이스에 접근하려고 했습니다. @SpringBootApplication public class MyApplication { public static void main(String[] args) { SpringApplication.run(MyApplication.class, args); } }그러나 다음과 같은 에러로그가 발생했습니다. *************************** APPLICATION FAILED TO START *************************** Description: Failed to configure a DataSource: 'url' attribute ..


원문링크 : [Spring Boot] "Failed to configure a DataSource" 해결