我已检查过有关此问题的所有相关问题。我的问题是,我在相同的netbeans项目中有scala代码和java代码。 scala的主页env已设置好。我用windows系统进行开发。我知道netbeans项目的build.xml需要更改,首先编译scala代码然后编译java代码。但我无法在netbeans IDE上找到很多例子。
答案 0 :(得分:0)
我使用netbeans sbt插件(nbsbt)。它透明地处理这个问题。
答案 1 :(得分:0)
仅与切向相关,但使用pom(maven)项目的Intellij Idea处理此问题时没有任何问题。您只需在srce / main / java旁边创建一个src / main / scala目录并使用Scala编译器插件:
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<id>compile</id>
<goals>
<goal>compile</goal>
</goals>
<phase>compile</phase>
</execution>
<execution>
<id>test-compile</id>
<goals>
<goal>testCompile</goal>
</goals>
<phase>test-compile</phase>
</execution>
<execution>
<phase>process-resources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
我只为那些可能在思考NetBeans与Idea for Scala开发的人提供此功能。