javaintellij-ideajshell

How to import a custom class in intellij JShell console


I am using the new intellij Jshell console (introduced here https://blog.jetbrains.com/idea/2017/09/java-9-and-intellij-idea/)

I created a simple class file Test2.java

public class Test2 {

    public static String test(){
        return "Hello";
    }
}

The JShell console is able to find the method in the hints enter image description here

when i try to run this on intellij jshell console (Tools>Jshell Console)

Test2.test();

I get the following error

"C:\Program Files\Java\jdk-9.0.1\bin\java" --add-modules java.xml.bind -classpath "C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.3.1\lib\jshell-frontend.jar;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2017.3.1\lib\jshell-protocol.jar" com.intellij.execution.jshell.frontend.Main

ERROR: cannot find symbol
  symbol:   variable Test2
  location: class 
Rejected Test2.test()

Are there any thing I have to configure for JShell to recognise my custom class?
I have set it to use the class path of my project.

The codes.
enter image description here

The Jshell console and the error below. enter image description here

Edit:

I've also tried to move the codes into a package and importing it in Jshell as suggested by user @NullPointer.

The same error persists and it also gives me "ERROR: package angelapps.java does not exist" error.

enter image description here


Solution

  • Let's say you have following structure of project:

    enter image description here

    and following code:

    enter image description here

    Make sure to set Libraries in Project Settings: File -> Project Structure -> Libraries

    Make sure to use your output location here (location where your class files are generated)! It may vary depending on build system (target/classes or out/production, etc.)

    enter image description here

    It should give you result you are looking for:

    enter image description here