Apache NetBeans Language Server Extension for VS CodeThis is Apache NetBeans Language Server extension for VS Code. Use it to get all the goodies of NetBeans via the VS Code user interface! Runs on JDK11 and all newer versions. Apache NetBeans Language Server brings full featured Java development (edit-compile-debug & test cycle) for Maven and Gradle projects to VSCode. As well as other features. Getting Started
Proxy IssuesWhen running this extension on GraalVM, as its runtime JDK, behind proxy it requires GraalVM JavaScript (Graal.JS) component installed to perform automatic proxy resolution. Either install Graal.JS using GraalVM VSCode extension available on Marketplace or invoke Supported Actions
Project ExplorerProject 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. Debugger and Launch ConfigurationsLanguage Server Java+ ... launch configuration supports debugging and running Java applications using JDK11 or newer.
Launch Configurations
Default launch configurations provided by Language Server can modified in Run Configurations panelProgram arguments, VM options, evironment variables,... can be set in Run Configuration panel a part of Explorer. The panel is sufficient for all typical use-cases Java programmer faces. Only advanced, expert scenarios may require touching of Supported RefactoringsClass level refactorings as well as variable refactorings are supported in VSCode via Apache NetBeans extension. See following screenshots: Source Action ... context menuIntroduce refactorings available via Show Code actions light bulbMore Refactorings available also using Refactor... context menuSurroung with refactoringsSome refactorings are two steps with like Override method ... where method to be overriden is selected in 2nd step: Change Method Parameters refactoringChange method parameters refactoring is provided using dedidacated form allowing to change, add, move, remove method parameters. Move Members RefactoringMove members refactoring provides dedicated form as well. Some of supported refactorings:
Organize ImportsOut of the box support for organizing imports in Java sources is available. It removes unused imports, groups imports by packages and updates your imports whenever a file is saved. In addition to the defaults, there is a rich set of configuration options. Go to VSCode
And JavaDoc smart editingWhen adding JavaDoc to code NetBeans assists by suggesting to insert preformatted and prepopulated JavaDoc comment. Type Source Code formattingFormatting source code is possible using also other styles than NetBeans. Eclipse, Google and Spring formatters can be used. For Eclipse formatter simply export settings from Eclipse IDE into standard file and then set Test ExplorerNetBeans Language Server provides Test Explorer view which allows to run all tests in a project, examine the results, go to source code and run particular test. Native Image DebuggerNetBeans Language Server allows Java like debugging of native images produced by GraalVM native-image tool. It is provided using GDB and via new Run configuration named Launch Native Image. This experimental feature works now only on Linux with certain version of GDB, see above. In order to debug native image applications it is necessary to build such native image with debug information available. It can be done by providing following switches for native-image tool:
Using Native Image Maven PluginIt is possible to use Native-Image Maven Plugin to run native-image builds for Maven projects.
In this case add following
Setting project's Maven pom.xml to skip native-image build everytime when project is being built is a good practice. When native image is built, including debug info then add Launch Native Image configuration to launch.json. Select it in Run & Debug activity window and press F5 to debug Java source code on native image. Database SupportDatabase Explorer allows to connect to databases using appropriate JDBC drivers.
Make Default Connection sets selected Database connection as default for IDE. This connection is then used by all IDE editors for SQL Code completion, or Micronaut Data queries, e.g. OCI ExplorerOracle Cloud Infrastructure Explorer supports viewing compartments and resources available on user OCI instance. It is defined by OCI config file which has to be downloaded according to OCI instructions and saved in It is possible to add JDBC connection to Oracle Autonomous DB running in OCI using Add DB Connection menu. It downloads DB Wallet automatically. Cloud Assets PanelCloud Assets panel shows Micronaut OCI Properties to be set. These are read from project artefacts currently provided in project pom.xml or build.gradle. When user OCI configuration file It is also possible to generate suggested OCI Policies needed by project to run in OCI and copy & paste these policies into OCI Cloud Console. Supported Options
Selecting the JDKThe user projects are built, run and debugged using the same JDK which runs the Apache NetBeans Language Server. The JDK is being searched in following locations:
As soon as one of the settings is changed, the Language Server is restarted. Checking JDK compatibilityThe extension will check if source level Java (defined in the project) is compatible with the one used by extension. It checks if the source level Java version is lower or equal to the Java version used by extension, and if this condition is not fulfilled, it will show warning message. It will not perform the check if the RedHat extension is installed. Running Language Server per VSCode workspace or for userIt is possible to run Apache NetBeans Language Server per workspace (VSCode window). This allows separation of Language Server for given project as Language Server JVM is not shared for more VSCode open workspaces (projects).
It is possible to change this in Conflicts with other Java ExtensionsApache NetBeans Language Server extension isn't the only Java supporting extension. To avoid duplicated code completion and other misleading clashes the extension disables certain functionality known to cause problems, this is done per Workspace. This behavior can be disabled by setting ContributingRead building instructions to help Apache community to improve the extension. |