4

我正在尝试在我的 Scala 应用程序中加入一个交互式 shell。我正在使用以下系统:

  • 斯卡拉 2.10.0
  • sbt 0.12.2
  • 阿卡 2.1.0
  • sbt-lwjgl-插件 3.1.4

和以下非工作代码:

    import akka.actor.Actor
    import scala.tools.nsc.Settings
    import scala.tools.nsc.interpreter.IMain

    class TestActor extends Actor {
      def receive => {
        case _ => {
          val settings = new Settings
          settings.usejavacp.value = true
          settings embeddedDefaults ActorSystem.getClass.getClassLoader
          val repl = new IMain(settings)
          repl.interpret("import java._")               // working
          repl.interpret("import scala._")              // working
          repl.interpret("import akka._")               // not working
          repl.interpret("import other.java.class.Bar") // not working
        }
      }
    }

Sbt 设置为fork := true. 我尝试了几种设置和类路径配置,但没有找到有效的配置。有人可以给我这个问题的提示/解决方案吗?

4

1 回答 1

0

您是否尝试过使用绝对路径重新导入所有类路径?

val settings = new Settings
settings.usejavacp.value = true

val classLoader = Thread.currentThread.getContextClassLoader

classLoader.asInstanceOf[URLClassLoader].getURLs.map(url => new File(url.toURI).getAbsolutePath).foreach {
  jarPath =>
    println(s"adding into Scala SDK classpath : ${jarPath}")

    settings.bootclasspath.append(jarPath)
    settings.classpath.append(jarPath)
}
于 2013-05-24T07:44:51.550 回答