我用谷歌搜索了很多,现在完全被卡住了。我知道,有类似的问题,但请阅读到最后。我已经尝试了所有提出的解决方案,但没有一个奏效。
我正在尝试在 Play 2.1 项目中使用IMain
该类scala.tools.nsc
(使用 Scala 2.10.0)。
控制器代码
这是代码,我尝试IMain
在 Websocket 中使用。这仅用于测试。
object Scala extends Controller {
def session = WebSocket.using[String] { request =>
val interpreter = new IMain()
val (out,channel) = Concurrent.broadcast[String]
val in = Iteratee.foreach[String]{ code =>
interpreter.interpret(code) match {
case Results.Error => channel.push("error")
case Results.Incomplete => channel.push("incomplete")
case Results.Success => channel.push("success")
}
}
(in,out)
}
}
一旦通过 Websocket 发送了某些内容,play 就会记录以下错误:
Failed to initialize compiler: object scala.runtime in compiler mirror not found.
** Note that as of 2.8 scala does not assume use of the java classpath.
** For the old behavior pass -usejavacp to scala, or if using a Settings
** object programatically, settings.usejavacp.value = true.
构建.scala
object ApplicationBuild extends Build {
val appName = "escalator"
val appVersion = "1.0-SNAPSHOT"
val appDependencies = Seq(
"org.scala-lang" % "scala-compiler" % "2.10.0"
)
val main = play.Project(appName, appVersion, appDependencies).settings(
)
}
到目前为止我尝试过的
这一切都没有奏效:
- 我已经包含
fork := true
在Build.scala
- 一个
Settings
对象:embeddedDefaults[MyType]
usejavacp.value = true
- 作为对问题嵌入式 Scala REPL 继承父类路径的回答提出的灵魂
我不知道现在该怎么办。