☕Java/Spring
RDBMS별 DataSource driverClass, url 정리
캔
2021. 11. 12. 20:05
RDBMS | Driver | URL |
Oracle | oracle.jdbc.driver.OracleDriver oracle.jdbc.OracleDriver |
jdbc:oracle:thin:@localhost jdbc:oracle:oci:@localhost |
MySQL | com.mysql.jdbc.Driver | jdbc:mysql://localhost:3306/[스키마명] |
MariaDB | org.mariadb.jdbc.Driver | jdbc:mariadb://localhost:3306/[스키마명] |
PostgreSQL | org.postgresql.Driver | jdbc:postgresql://localhost:5432/[스키마명] |