Play框架中的外部Jars问题

时间:2014-03-05 10:18:51

标签: java scala paypal playframework-2.0 dependencies

我从grepcode下载了PayPal API jar,并且我的java代码编译成功,但我想在我的 playFramework控制器中访问java代码

object PayPalController extends Controller {

  def initialize = Action {

    val ack=PayPalDAO.initialize().getAck().toString() // returning  SetExpressCheckoutResponseType

  // I'm accessing here my JavaCallss models.PayPalDAO.java
    println(ack);

    Ok("")
  }

enter image description here

1 个答案:

答案 0 :(得分:4)

游戏看不到你的罐子。

当您想要添加非托管依赖项时,您需要将jar复制到播放项目根目录中的lib文件夹,然后重新加载项目(或者只是重新启动播放)。

your-project-root
- app
- conf
- lib <- you need to create this and copy the jar there
... whatever else

有关详细信息,请参阅http://www.playframework.com/documentation/2.2.x/SBTDependencies