Scala and Java in same project

后端 未结 2 1182
温柔的废话
温柔的废话 2021-02-19 23:02

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

相关标签:
2条回答
  • 2021-02-19 23:38

    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.

    0 讨论(0)
  • 2021-02-19 23:54

    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.

    0 讨论(0)
提交回复
热议问题