Click here to Skip to main content
15,886,689 members
Articles / Programming Languages / Scala

Setting Up VS Code for Scala Development on WSL

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
19 Nov 2020CPOL7 min read 6.8K  
How to set up Visual Studio Code for Scala development on WSL
This article is a brief tutorial of the VS Code setup for Scala programming on WSL and will hopefully provide useful information for setting up the Scala development environment.

Visual Studio Code (VS Code) has been my favorite editor for years. With the numerous extensions and community support, VS Code has become one of the most popular editors for programming. Windows Subsystem for Linux (WSL) lets developers run a Linux environment directly on Windows. The powerful combination of these two provides programmers a great way to write software.

VS Code has excellent language support, including Scala. Most Scala developers use IntelliJ as their development tool. Therefore, not many tutorials exist for using VS Code as a Scala development tool. This article is a brief tutorial of the VS Code setup for Scala programming on WSL. Hopefully, it could provide useful information for setting up the Scala development environment.

Table of Contents

Assumptions and Requirements

This tutorial is written with the following setup:

Step 1: Setup WSL2

The latest WSL version, WSL2, is built with a full Linux kernel and is serviced by Windows updates. WSL2 not only offers increased file IO performance but also provides full system call compatibility. If your Windows 10 is newer than 1903 Build 18362, using WSL2 is highly recommended.

To setup WSL2 on Windows 10, follow the instructions: Windows Subsystem for Linux Installation Guide for Windows 10. Make sure WSL2 is enabled. After the WSL installation completes, install Ubuntu 20.04 from Windows Store.

On Windows 10, install VS Code and Scala and Remote Development extensions.

  1. Download VS Code from https://code.visualstudio.com/.
  2. Follow the instruction to install VS Code.
  3. Click the Install and follow its instructions to install Remote Development.
  4. Do the same thing as the previous step to install Scala (Metals) extension.

Also, install MobaXterm from its official site https://mobaxterm.mobatek.net/download-home-edition.html. Another option to access WSL2 is Windows Terminal. This tutorial uses MobaXterm.

Step 3: Install Java, sbt, and Scala on Ubuntu (WSL2)

Launch the installed MobaXterm and click WSL session. MobaXterm automatically detects the WSL in the system.

Image 1

And we should see the Ubuntu bash shell.

Image 2

  • Install OpenJDK 11
    Bash
    $ sudo apt install openjdk-11-jdk

    By default, VS Code uses the JAVA_HOME environment variable to locate the java executable. To make sure the VS Code uses the correct JDK version, setup JAVA_HOME is recommended. Add the following line to ~/.bashrc.

    Bash
    export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64/

    Note that the path may be different if installing a different JDK.

  • Install sbt
    Bash
    $ sudo apt install sbt
  • Install Scala

    Install Scala is not necessary since sbt will download an appropriate version when we build a Scala program. However, if using Scala REPL (command-line shell) is desired, run the following command to install it.

    Bash
    $ sudo apt install scala

Step 4: Use VS Code to Create a Sample Project

The sample project the tutorial uses to the demo has the following layout:

Bash
scala-sample-code
├── .scalafmt.conf
├── build.sbt
├── project
│   └── build.properties
└── src
    ├── main
    │   └── scala
    │       └── Sample.scala
    └── test
        └── scala
            └── SampleSpec.scala

Before we launch VS Code, use mobaXterm Ubuntu shell to create a project folder on Ubuntu WSL2.

Bash
$ cd ~ 
$ mkdir scala-sample-code

Once the project folder is created, we can close mobaXterm and launch VS Code.

Click the left-bottom icon to connect to WSL and choose Open Folder in WSL as the picture shown below to open the scala-sample-code folder we just created.

Image 3

After VS Code opens the scala-sample-code folder, we can see the left-bottom icon becomes WSL: Ubuntu, and we can start creating folders and files.

Image 4

We first create build.sbt with the following content:

JavaScript
ThisBuild / scalaVersion     := "2.13.3"
ThisBuild / version          := "0.0.1"

lazy val sample = (project in file("."))
  .settings(
    name := "Sample Project",
    libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.2" % Test,
  )

As soon as the build.sbt file is created, the Metals extension of VS Code automatically detects the change and bumps up a window for importing the build.

Image 5

The import process automatically creates some sbt build folders and files. And we can continually create our project folders and files.

  • .scalafmt.conf
    JavaScript
    version = "2.7.4"
    align.preset = more
    maxColumn = 100
  • Sample.scala
    JavaScript
    object Sample extends Greeting with App {
      println(greeting)
    }
    
    trait Greeting { lazy val greeting: String = "hello" }
  • SampleSpec.scala
    JavaScript
    import org.scalatest.wordspec._
    
    class SampleSpec extends AnyWordSpec {
      "The sample code" should {
        "say hello" in {
          assert(Sample.greeting.startsWith("h"))
        }
      }
    }

After the sample project is created, the layout looks like the picture below from VS Code.

Image 6

Note that .bloop, .metlas, and .vscode are generated by VS Code and Metals extension. If we use a version control system like Git, we should add these folders to .gitignore.

(The sample code is also available at https://github.com/shunsvineyard/scala-sample-code.)

VS Code Usage

The following subsections demonstrate some everyday use cases for Scala development using VS Code.

Code Format

Metals supports Scalafmt for code formatting. To format code, right-click on the Scala file we want to format and select Format Document to format the file as shown in the picture.

Image 7

By default, Metals formats Scala documents based on the .scalafmt.conf file on the project directory’s root. The path can be modified from the Metals extension configuration. See Configurations to alter the settings.

Run and Debug

There are two ways to run and debug the Scala code.

1. Use Code Lenses

For each main or test class, Metals shows code lenses run | debug for main class and test | test debug for test classes. Click run or test to run or test the Scala program.

Image 8

2. Use launch.json Configuration

The other way is to define launch.json for VS Code to run or debug a program.

Follow the steps in the picture to create the launch.json configuration file.

Image 9

After step 3, VS Code asks a few more questions. We can leave them all blank and edit the launch.json file after the JSON file is created. After the configure file is created, we can fill in the configurations and run or debug the program.

Image 10

Configurations

In addition to the most common use cases, code format, run and debug, there are many other things we can configure Metals to work in the ways we want.

To open the settings, do [File -> Preference -> Settings] to open the settings. The settings have three scopes: User, Remote, and Workspace. Choose whichever fits our needs. And select Extensions -> Metals to modify the settings.

Image 11

Troubleshooting

Sometimes, the Metals extension may not work correctly. We can check the Metals output to get more information to solve it or, at least, have better error messages to Google.

For example, if the JDK version we installed does not support JDI (this will result in the debugger not working), we will get the following error message when we try to run the debugger.

Couldn't find a debug adapter descriptor for debug type 'scala' 
(extension might have failed to activate)

Unfortunately, the error message does not give enough information about the issue. In this case, we can check the Metals output. See the picture below:

Image 12

It gives us more information about this issue.

Message: Debugging is not supported because bloop server is running on a 
JRE /usr/lib/jvm/java-8-openjdk-amd64/jre with no support for Java Debug Interface: 
'JDI implementation is not provided by the vendor'. 
To enable debugging, install a JDK and restart the bloop server.

So, we know the JDK is the issue and needs to be fixed.

Terminal for sbt Commands

One useful VS Code feature worth mentioning is the integrated terminal. With the integrated terminal, we can run the shell on WSL. For Scala development, the terminal provides a convenient way to run sbt commands within the VS Code.

Using Ctrl+Shift+P to bring up the Command Palette and type terminal. It should show a few terminal options. Choose to Create New Integrated Terminal (In Active Workspace).

Image 13

This brings up the WSL shell on the project directory.

Image 14

With this feature, we can use the terminal without external tools such as Windows Terminal or MobaXterm.

Conclusion

This article provides the basic setup and common use cases for using VS Code to write Scala code. Although it demonstrates the configurations on Windows Subsystem for Linux, the VS Code Usage also works on Windows, Linux, and MacOS.

VS Code may not be the most popular editor for Scala programming, but with the great extension support such as Metals, VS Code can be a useful tool for Scala development. Especially for people who work in multiple languages, VS Code could be the one for all your needs.

The post Setting Up VS Code for Scala Development on WSL appeared first on Shun's Vineyard.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
My name is Shun. I am a software engineer and a Christian. I currently work at a startup company.
My Website: https://formosa1544.com
Email: shun@formosa1544.com

Comments and Discussions

 
-- There are no messages in this forum --