1

我正在尝试通过 Play Framework 2.0.4 连接到 Oracle 数据库。

我不断收到配置错误“找不到驱动程序:[oracle.jdbc.driver.OracleDriver]”。

涉及的软件

Windows 7 64bit / IntelliJ 12.0.4 / Play 2.0.4 / Java JDK 1.7 64bit

我从 oracle 下载了 ojdbc6-11.jar 文件,并通过文件 -> 项目结构 -> 库将其添加到 IntelliJ 中的库中。我还将文件添加到类路径和路径,但它似乎不起作用。

application.conf中的相关信息如下

db.default.url="jdbc:oracle:thin:@myserverinformation:port/servicename"

db.default.driver=oracle.jdbc.driver.OracleDriver

db.default.user=user

db.default.password=pass

任何想法我做错了什么?

4

1 回答 1

2

Did you add it to your project's lib folder as follow: yourProject/lib/ojdbc6-11.jar

That is the directory where Play looks for external library. Alternatively, you may use maven to install libraries (given that they are available there), see the Build.scala file in yourProject/project

See: http://www.playframework.com/documentation/2.0.1/SBTDependencies

于 2013-02-28T21:37:28.867 回答