You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,8 @@ In the VS Code command palette :
51
51
* Java - broad selection of various predefined Java classes
52
52
* Unit tests - JUnit and TestNG templates for test suites and test cases
53
53
* Other - various templates for Javascript, JSON, YAML, properties, ... files
54
+
*__Java: Create New Notebook...__ command to create a new [Java notebook](#interactive-java-notebooks)(`.ijnb` file)
55
+
*__Java: Open JShell...__ command to open [JShell](#jshell) .
54
56
*__Java: Compile Workspace__ - invoke Maven or Gradle build
55
57
*__Java: Clean Workspace__ - clean Maven or Gradle build
56
58
*__Download, install and Use JDK__ - allows download and installation of JDK binaries
@@ -63,6 +65,41 @@ In the VS Code command palette :
63
65
Project Explorer provides an overview of logical project structure, groups sources together and greatly simplifies Java package structure exploration. Project Explorer is an addition to the classical workspace explorer. Use it to build, test, execute and operate your Maven and Gradle Java projects.
* Experience interactive coding with Java notebooks.
71
+
Use the __Java: Create New Notebook...__ command to create a new Java notebook(`.ijnb` file)
72
+

73
+
* Jupyter-style notebooks let you combine Java code snippets with markdown-formatted text cells.
74
+
* Run individual code cells or execute the entire notebook.
75
+
* Save outputs alongside code cells.
76
+
* Sharing notebooks
77
+
* Share as `.ijnb` files for use with Oracle Java extension.
78
+
* Rename with `.ipynb` for viewing in other IDEs Jupyter etc.
79
+
* Download this [sample notebook](https://github.com/oracle/javavscode/blob/main/samples/notebooks/LearningSample.ijnb) and open in VSCode to get started.
80
+
81
+
### Java Notebooks for Java Projects
82
+
* Document Java projects with interactive Java notebooks.
83
+
* Open/Create a Java notebook in your workspace folder loaded with classes from your project.
84
+

85
+
* Use `Project Context` options incase you want to change to a different project context .
0 commit comments