oracle&mysql配置
Posted longlinji
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle&mysql配置相关的知识,希望对你有一定的参考价值。
===========pom.xml===========
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.4</version>
</dependency>
<dependency>
<groupId>com.mysql.jdbc</groupId>
<artifactId>connector</artifactId>
<version>5.1.45</version>
<classifier>bin</classifier>
</dependency>
===========db.properties==========
driver=oracle.jdbc.OracleDriver
url=jdbc:oracle:thin:@localhost:1521:orcl
dbuser=scott
dbpwd=tiger
#driver=com.mysql.jdbc.Driver
#url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
#dbuser=root
#dbpwd=root
以上是关于oracle&mysql配置的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot+PostgreSQL/Oracle/MySQL连接配置
SpringBoot+PostgreSQL/Oracle/MySQL连接配置