springboot 2.0.0 다 중 데이터 원본 설정 에 jdbcUrl is required with driverClassName 오류 가 발생 했 습 니 다.

Spring Boot 2.0 에서 다 중 데이터 원본 과 Spring Boot 1.5.x 를 설정 하기 전에 일부 설정 과 용법 이 다소 다 릅 니 다.그 중 하 나 는"jdbcUrl is required with driver ClassName"의 오류 입 니 다.
해결 방법:
설정 파일 에 spring.datasource.jdbc-url 을 사용 합 니 다.일반적으로 사용 하 는 spring.datasource.url 이 아 닙 니 다.

spring:
 datasource:
  master:
   jdbc-url: jdbc:postgresql://192.168.1.2:5432/test?useUnicode=true&characterEncoding=utf8
   username: postgres
   password: postgres
   driverClassName: org.postgresql.Driver
   maxActive: 10
   maxIdle: 3
  worker:
   jdbc-url: jdbc:postgresql://192.168.1.3:5432/test?useUnicode=true&characterEncoding=utf8
   username: postgres
   password: postgres
   driverClassName: org.postgresql.Driver
   maxActive: 10
   maxIdle: 3
두 번 째 방법:
데이터 원본 설정 시 DataSourceProperties 방법 을 사용 합 니 다.

spring boot 2.0.0 설정 다 중 데이터 원본 에 jdbcUrl is required with driver ClassName 의 오류 가 발생 했 습 니 다.더 많은 spring boot 다 중 데이터 원본 오류 내용 은 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 도 많은 응원 부 탁 드 리 겠 습 니 다!

좋은 웹페이지 즐겨찾기