Scala and Java in same project

ⅰ亾dé卋堺 提交于 2019-12-09 17:26:15

问题


Can I use Scala and Java in the same project? I am new with programming so it's a litte bit confusing for me.

From my research I have read that the best combination to get a good project is the combination Java/Spring or Scala/Lift. Why do these combinations exist? Is it not possible to use Scala with Spring or Java with Lift?

In case I use Scala, should I have the whole configuration in Scala code? Or can I have external resources so I shouldn't modify every time the Scala code.


回答1:


Q. Can I use Scala and Java in the same project?

Sure, you can. You can use most of the JVM based languages together in the same project.

Q. How do I go about it?

The basic idea is to configure your build tool to compile both the Java and the Scala code. For example, if you use Maven, you can use the Maven Scala plugin for compiling Scala code. There are two options for using this plugin:

  1. Disable Maven Compiler plugin that compiles Java code by default. Then, let the Maven Scala plugin compile both the Java and Scala code.
  2. Continue using the Maven Compiler plugin to compile Java. Configure the Maven Scala plugin to compile only Scala code.

I prefer option 2 since I have found Scala compilation to be quite slow (although the performance has been improving steadily with each new Scala version) so using the Maven Compiler plugin reduces the overall build time.

Q. Is it not possible to use Scala with Spring or Java with Lift?

Sure you can use Scala with Spring and Java with Lift. You can check my sample application that uses Java, Scala and Spring.

You will notice that the sample application has separate source folders for Java and Scala code, although that is not mandatory and can be configured in the Maven configuration.

Q. In case I use Scala, should I have the whole configuration in Scala code?

I am assuming you mean Spring configuration. It is entirely up to you whether you wish to configure Spring using XML files, Java classes or Scala classes. All approaches work. It depends on which style you are more comfortable with and prefer.

You can even spread the configuration across multiple classes or even a combination of XML and classes.




回答2:


Short answer

Yes

Longer answer

Scala and Java work good together.

Scala main compilation target can be compiled is Java bytecode that runs on any JVM. On top of runtime compatibility, the Scala language itself supports interoperability.

So the basic project setup looks like

./src
   /main
       /scala
       /java
    test
        /scala
        /java

How everything is bound together is determined by the build system that you are using, i.e. sbt, gradle or maven all provides good support here.



来源:https://stackoverflow.com/questions/35720392/scala-and-java-in-same-project

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!