17

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.

2 Answers 2

14

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.

Sign up to request clarification or add additional context in comments.

Comments

7

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.

4 Comments

Which benefits i get when i use scala with java? I can make the hole backend staff with java and don't need scala? Can you explain more please :) Thanks !
Exactly. You do not need Scala not even when you use a library written in Scala you can still call it from Java.
Is it necessary to separate Java code and Scala code in different folders/packages ?
It's best practice and everything can be configured. It is not necessary but suggested.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.