gpt4 book ai didi

scala - 在 Mac OSX 上运行 IntelliJ 中的第一个 playframework 示例

转载 作者:行者123 更新时间:2023-12-04 03:08:22 29 4
gpt4 key购买 nike

在我的新 mac OSX 10.8.3 中,
我安装 scala 2.10.0,玩 2.1.0 和 IntelliJ12,
并创建一个 Play 项目如下:

#install brew
> ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
> brew --version
0.9.4

# update brew database
> cd $(brew --prefix)
> brew update
> cd $(brew --prefix) && git pull --rebase

# get scala 2.10.0
> brew versions scala
2.10.1 git checkout 79dc6f1 Library/Formula/scala.rb
2.10.0 git checkout 8ca07aa Library/Formula/scala.rb
2.9.2 git checkout 8896425 Library/Formula/scala.rb
...

> git checkout 8ca07aa Library/Formula/scala.rb # 2.10.0
> brew install scala
> scala -version
Scala code runner version 2.10.0 -- Copyright 2002-2012, LAMP/EPFL


# install play 2.1.0
> brew versions play
2.1.0 git checkout 6a70797 Library/Formula/play.rb
...

> brew install play
> play -version
play! 2.1.0 (using Java 1.6.0_43 and Scala 2.10.0), http://www.playframework.org

我创建了一个 Play 应用程序:
> cd ~/
> play new myapp
name: myapp
Create a simple Scala application

# generate IntelliJ project:
> cd myapp
> play
> idea
[info] Created /Users/david/myapp/.idea_modules/myapp.iml
[info] Created /Users/david/myapp/.idea_modules/myapp-build.iml

并在 IntelliJ 中打开项目:
# Install IntelliJ 12 Ultimate Edition
Download it from http://www.jetbrains.com/idea/
12.0.4, Build #IU-123.169
Build on February 13, 2013

# install scala plugin in IntelliJ
run IntelliJ,
Preferences -> plugins -> Browse from repositories -> add scala.
current version: 0.7.134

# open myapp project in IntelliJ
File -> Open Project, chose the directory /Users/david/myapp

然后当我尝试运行单元测试时:
Project -> myapp -> test -> ApplicationSpec -> (right click) -> Run

我收到此错误:
scala: Сompiler library for module bigbrother not found: Right(Project) / Right(scala-2.10.0) 

其实有几个错误:
in File -> Project Structure -> Modules, there are two modules:
-myapp
-mypp-build

File -> Project Structure -> Modules -> myapp -> Scala
Compiler library: scala-2.10.0 [not found]
<<< ERROR

File -> Project Structure -> Modules -> myapp-build -> Dependencies:
scala-2.9.2
<<< ERROR

如果我按如下方式更正第一个错误,
File -> Project Structure -> Modules -> myapp -> Scala -> Compiler library
and from the dropdown list I select the second valid option “scala-2.10.0 (version 2.10.0)”.

然后,重新运行测试,会产生错误:
scala: Output path /Users/david/bigbrother/project/target/scala_2.9.2 is shared between: Module 'bigbrother-build' production, Module 'bigbrother-build' tests
Currently external Scala compiler prohibits output path sharing.
Either disable the external build mode or configure separate output paths.
TIP: you can use Project Artifacts to combine compiled classes.

我需要做什么才能使其工作?

更新:基于 Marius 和 alexwriteshere 答案的解决方案

生成 IntelliJ 项目
> cd myapp
> play
> idea no-sbt-build-module

(而不仅仅是“想法”)

然后,
项目设置 -> 库
选择“Scala 2.9.2”并单击“-”将其删除。

然后,
项目设置 -> 模块 -> my_app -> Scala -> Scala-compiler
在这个下拉列表中,选择了用红色写的“Scala 2.10.0”。
移至列表顶部,然后选择以黑色/灰色书写的“Scala 2.10.0(版本 2.10.0)”。

备注

有时(我不知道为什么)以黑色/灰色编写的“Scala 2.10.0(版本 2.10.0)”选项在下拉列表中不可用。
一个对我有用的解决方法如下:
项目设置 -> 全局库 -> + -> Java
从此目录中选择这些文件 scala-compiler.jar、scala-library.jar 和 scala-reflect.jar:/usr/local/Cellar/scala/2.10.0/libexec/lib/
选择确定。
将其命名为“我的 scala 2.10.0 捆绑包”。

然后,再次进入项目设置 -> 模块 -> my_app -> Scala -> Scala-compiler
现在你拥有了两个,一个是你刚刚创建的“我的 scala 2.10.0 包”,另一个是标准的:“Scala 2.10.0(版本 2.10.0)”,用黑色/灰色编写。选择标准的,然后删除您创建的全局库。

我不知道为什么会发生这种情况,我真的不想花更多时间来找出这个问题。目前,这种解决方法对我有用。但如果您发现,请随时添加评论。

最佳答案

这个问题可以通过生成idea项目来解决:

$ play  # start play from command line
[your-play-project] $ idea no-sbt-build-module

这将启用 IntelliJ 对 Scala 的默认构建机制,不会导致这些问题。

关于scala - 在 Mac OSX 上运行 IntelliJ 中的第一个 playframework 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15751139/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com