[Spring-Boot] Caused by: java.lang.IllegalArgumentException: jdbcUrl is required with driverClassName.

application.properties 에서
jdbc 정보를 spring.db1.datasource.jdbc-url 가 아닌 
spring.db1.datasource.url 작성하여 에러발생

ex)
spring.db1.datasource.url=jdbc:mysql://127.0.0.1:3306/test?useSSL=false 를
spring.db1.datasource.jdbc-url=jdbc:mysql://127.0.0.1:3306/test?useSSL=false 로 변경

댓글

이 블로그의 인기 게시물

[Eclipse] publishes and runs j2ee and java ee web projects and server configurations to a local tomcat server