Extensions for the built-in Language Server Protocol support in Neovim (>= 0.6.0) for eclipse.jdt.ls.
This project follows the KISS principle and targets users with some experience with Neovim, Java and its build tools Maven or Gradle who prefer configuration as code over GUI configuration. Ease of use is not the main priority.
If you prioritize ease of use over simplicity, you may want to use an alternative:
-
organize_imports
function to organize imports -
extract_variable
function to introduce a local variable -
extract_variable_all
function to introduce a local variable and replace all occurrences. -
extract_constant
function to extract a constant -
extract_method
function to extract a block of code into a method - Open class file contents
- Code action extensions
- Generate constructors
- Generate
toString
function -
hashCode
andequals
generation. - Extract variables or methods
- Generate delegate methods
- Move package, instance method, static method or type
- Signature refactoring
-
javap
command to show bytecode of current file -
jol
command to show memory usage of current file (jol_path
must be set) -
jshell
command to open upjshell
withclasspath
from project set - Debugger support via nvim-dap
- Optional vscode-java-test extensions
- Generate tests via
require("jdtls.tests").generate()
- Jump to tests or subjects via
require("jdtls.tests").goto_subjects()
- Generate tests via
Take a look at a demo to see some of the functionality in action.
- Requires Neovim (Latest stable (recommended) or nightly)
- nvim-jdtls is a plugin. Install it like any other Vim plugin:
git clone https://codeberg.org/mfussenegger/nvim-jdtls.git ~/.config/nvim/pack/plugins/start/nvim-jdtls
- Or with vim-plug:
Plug 'mfussenegger/nvim-jdtls'
- Or with packer.nvim:
use 'mfussenegger/nvim-jdtls'
- Or any other plugin manager
Install eclipse.jdt.ls by following their Installation instructions.
To configure jdtls you have several options. Pick one from below.
Important:
- If using the
jdtls
script from eclipse.jdt.ls you need Python 3.9 installed. - eclipse.jdt.ls itself requires Java 21
- eclipse.jdt.ls can handle projects using a different JDK than the one
you use to run eclipse.jdt.ls. Any JDK >= 8 is supported but you need
to configure
runtimes
for eclipse.jdt.ls to discover them. SeeJava XY language features are not available
in the troubleshooting section further below to learn how to do that. - Please also read the data directory configuration section.
Add the following to your init.lua
:
vim.lsp.enable("jdtls")
A jdtls
executable must be available in $PATH
for this approach to work.
If you need to customize settings
, use:
vim.lsp.config("jdtls", {
settings = {
java = {
-- Custom eclipse.jdt.ls options go here
},
},
})
vim.lsp.enable("jdtls")
See :help lsp-config
for more information.
- Make sure you don't have
jdtls
enabled viavim.lsp.enable("jdtls")
if using this approach. - Add the following to
~/.config/nvim/ftplugin/java.lua
(See:help base-directory
):
-- See `:help vim.lsp.start` for an overview of the supported `config` options.
local config = {
name = "jdtls",
-- `cmd` defines the executable to launch eclipse.jdt.ls.
-- `jdtls` must be available in $PATH and you must have Python3.9 for this to work.
--
-- As alternative you could also avoid the `jdtls` wrapper and launch
-- eclipse.jdt.ls via the `java` executable
-- See: https://github.com/eclipse/eclipse.jdt.ls#running-from-the-command-line
cmd = {"jdtls"},
-- `root_dir` must point to the root of your project.
-- See `:help vim.fs.root`
root_dir = vim.fs.root(0, {'gradlew', '.git', 'mvnw'})
-- Here you can configure eclipse.jdt.ls specific settings
-- See https://github.com/eclipse/eclipse.jdt.ls/wiki/Running-the-JAVA-LS-server-from-the-command-line#initialize-request
-- for a list of options
settings = {
java = {
}
},
-- This sets the `initializationOptions` sent to the language server
-- If you plan on using additional eclipse.jdt.ls plugins like java-debug
-- you'll need to set the `bundles`
--
-- See https://codeberg.org/mfussenegger/nvim-jdtls#java-debug-installation
--
-- If you don't plan on any eclipse.jdt.ls plugins you can remove this
init_options = {
bundles = {}
},
}
require('jdtls').start_or_attach(config)
The ftplugin/java.lua
logic is executed each time a FileType
event
triggers. This happens every time you open a .java
file or when you invoke
:set ft=java
:
If you have trouble getting jdtls to work, please read the Troubleshooting section. You can also find more complete configuration examples in the Wiki.
jdtls
takes a -data
option which defines the location where eclipse.jdt.ls
stores index data for each project it loads.
If the option is not explicitly set, jdtls
stored the data in a sub-folder
within tempdir.
The sub-folder name is derived from cwd
.
If your system wipes the temporary directory on a shutdown/boot it means
eclipse.jdt.ls will have to reindex your projects after each boot. To avoid
that you can set a -data
location explicitly. For example like this:
-- If you started neovim within `~/dev/xy/project-1` this would resolve to `project-1`
local project_name = vim.fn.fnamemodify(vim.fn.getcwd(), ':p:h:t')
local workspace_dir = '/path/to/workspace-root/' .. project_name
-- ^^
-- string concattenation in Lua
local config = {
cmd = {
...,
'-data', workspace_dir,
...,
}
}
...
is not valid Lua in this context. It is meant as placeholder for the
other options from the Configuration section above.)
Tip: You can get a better UI for code-actions and other functions by
overriding the jdtls.ui
picker. See UI Extensions.
nvim-jdtls
extends the capabilities of the built-in LSP support in
Neovim, so all the functions mentioned in :help lsp
will work.
nvim-jdtls
provides some extras, for those you'll want to create additional
mappings:
nnoremap <A-o> <Cmd>lua require'jdtls'.organize_imports()<CR>
nnoremap crv <Cmd>lua require('jdtls').extract_variable()<CR>
vnoremap crv <Esc><Cmd>lua require('jdtls').extract_variable(true)<CR>
nnoremap crc <Cmd>lua require('jdtls').extract_constant()<CR>
vnoremap crc <Esc><Cmd>lua require('jdtls').extract_constant(true)<CR>
vnoremap crm <Esc><Cmd>lua require('jdtls').extract_method(true)<CR>
" If using nvim-dap
" This requires java-debug and vscode-java-test bundles, see install steps in this README further below.
nnoremap <leader>df <Cmd>lua require'jdtls'.test_class()<CR>
nnoremap <leader>dn <Cmd>lua require'jdtls'.test_nearest_method()<CR>
nvim-jdtls
also adds several commands if the server starts up correctly:
JdtCompile
JdtSetRuntime
JdtUpdateConfig
JdtUpdateDebugConfig
(ifdap
and java-debug bundles are available)JdtUpdateHotcode
(ifdap
and java-debug bundles are available)JdtBytecode
JdtJol
JdtJshell
JdtRestart
See :help jdtls
nvim-jdtls
provides integration with nvim-dap.
Once setup correctly, it enables the following additional functionality:
- Debug applications via explicit configurations
- Debug automatically discovered main classes
- Debug junit tests. Either whole classes or individual test methods
For 1 & 2 to work, eclipse.jdt.ls needs to load the java-debug extension. For 3 to work, it also needs to load the vscode-java-test extension.
For usage instructions once installed, read the nvim-dap help. Debugging junit test classes or methods will be possible via these two functions:
require'jdtls'.test_class()
require'jdtls'.test_nearest_method()
Install java-debug
. If there is a package in your package manager of choice use that, if not, use one of the following methods:
MAVEN_OPTS="-Dmaven.repo.local=/tmp/m2" mvn dependency:get "-Dartifact=com.microsoft.java:com.microsoft.java.debug.plugin:0.53.1"
The artifact you need is /tmp/m2/com/microsoft/java/com.microsoft.java.debug.plugin/0.53.1/com.microsoft.java.debug.plugin-0.53.1.jar
(Replace 0.53.1
with the current java-debug version)
- Download Debugger for Java
- Unpack it using
unzip
The artifact you need will be in vscjava.vscode-java-debug-*/extension/server/
- Clone java-debug
- Navigate into the cloned repository (
cd java-debug
) - Run
./mvnw clean install
The build artifacts will be in com.microsoft.java.debug.plugin/target/
.
- Set or extend the
initializationOptions
(=init_options
of theconfig
from configuration) as follows:
local bundles = {
vim.fn.glob("path/to/com.microsoft.java.debug.plugin-*.jar", 1)
}
config['init_options'] = {
bundles = bundles
}
nvim-jdtls
will automatically register a java
debug adapter with nvim-dap,
if nvim-dap is available.
If you're using a plugin manager with explicit dependency manager, make sure
that nvim-dap
is listed as dependency for nvim-jdtls
for this to work.
Running :DapNew
will automatically discover main classes in your
project if the java-debug
bundles are installed and configured
correctly.
If you need additional configurations you can either add project local
configurations in .vscode/launch.json
or extend the
dap.java.configurations
list. See :help dap-configuration
.
To get an overview of all available attach
and launch
options, take
a look at java-debug options. Keep
in mind that any java.debug
options are settings of the vscode-java
client extension and not understood by the debug-adapter itself.
Install vscode-java-test
. If there is a package in your package manager of choice use that, if not, use one of the following methods:
- Download vscode-java-test
- Unpack it using
unzip
The artifacts you need are in dist/server
within the unpacked folder.
To be able to debug junit tests, it is necessary to install the bundles from vscode-java-test:
- Clone the repository
- Navigate into the folder (
cd vscode-java-test
) - Run
npm install
- Run
npm run build-plugin
- Extend the bundles in the nvim-jdtls config:
-- This bundles definition is the same as in the previous section (java-debug installation)
local bundles = {
vim.fn.glob("path/to/com.microsoft.java.debug.plugin-*.jar", 1)
}
-- This is the new part
local java_test_bundles = vim.split(vim.fn.glob("/path/to/vscode-java-test/server/*.jar", 1), "\n")
local excluded = {
"com.microsoft.java.test.runner-jar-with-dependencies.jar",
"jacocoagent.jar",
}
for _, java_test_jar in ipairs(java_test_bundles) do
local fname = vim.fn.fnamemodify(java_test_jar, ":t")
if not vim.tbl_contains(excluded, fname) then
table.insert(bundles, java_test_jar)
end
end
-- End of the new part
config['init_options'] = {
bundles = bundles;
}
This can have two reasons:
- Your
cmd
definition in the Configuration is wrong.
-
Check the log files. Use
:JdtShowLogs
or open the log file manually.:lua print(vim.fn.stdpath('cache'))
lists the path, there should be alsp.log
. You may have to increase the log level. See:help vim.lsp.set_log_level()
. -
Ensure you can start the language server standalone by invoking the
cmd
defined in the configuration manually within a terminal.
- The data folder got corrupted.
Wipe the folder and ensure that it is in a dedicated directory and not within
your project repository. See data directory
configuration. You can use
:JdtWipeDataAndRestart
to do this.
This can have several reasons:
-
You didn't follow Configuration closely and aren't invoking
require('jdtls').start_or_attach(config)
as part of ajava
filetype
event. Go back to the configuration section and follow it closely. -
You made a mistake in your configuration and there is a failure happening when you open the file. Try
:set ft=java
and look at the:messages
output. -
eclipse.jdt.ls is starting but it cannot recognize your project, or it cannot import it properly. Try running
:JdtCompile full
or:lua require('jdtls').compile('full')
. It should open thequickfix
list with errors if eclipse.jdt.ls started but cannot handle your project.
Check the log files. Use :JdtShowLogs
or open the log file manually. :lua print(vim.fn.stdpath('cache'))
lists the path, there should be a lsp.log
.
You may have to increase the log level. See :help vim.lsp.set_log_level()
.
Either the file doesn't exist or you're using ~
characters in your path.
Neovim doesn't automatically expand ~
characters in the cmd
definition. You
either need to write them out or wrap the fragments in vim.fn.expand
calls.
Eclipse.jdt.ls requires at least Java 21. You're using a lower version.
You're opening a single file without having a Gradle or Maven project. You need to use Gradle or Maven for the full functionality.
You need to set the language level via the Gradle or Maven configuration.
If you're starting eclipse.jdt.ls with a Java version that's different from the
one the project uses, you need to configure the available Java runtimes. Add
them to the config
from the configuration section:
local config = {
..., -- not valid Lua, this is a placeholder for your other properties.
settings = {
java = {
configuration = {
-- See https://github.com/eclipse/eclipse.jdt.ls/wiki/Running-the-JAVA-LS-server-from-the-command-line#initialize-request
-- And search for `interface RuntimeOption`
-- The `name` is NOT arbitrary, but must match one of the elements from `enum ExecutionEnvironment` in the link above
runtimes = {
{
name = "JavaSE-11",
path = "/usr/lib/jvm/java-11-openjdk/",
},
{
name = "JavaSE-17",
path = "/usr/lib/jvm/java-17-openjdk/",
},
}
}
}
}
}
You can also change the language level at runtime using the :JdtSetRuntime
command.
Completion requests can be quite expensive on big projects. If you're using some kind of auto-completion plugin that triggers completion requests automatically, consider deactivating it or tuning it so it is less aggressive. Triggering a completion request on each typed character is likely overloading eclipse.jdt.ls.
You can try running :JdtUpdateConfig
to refresh the configuration. If that
doesn't work you'll need to restart the language server.
The language server supports gradle and
maven as build tools. Your project
should either have a pom.xml
or settings.gradle
and build.gradle
file to
declare the dependencies.
As an alternative you could manually specify the dependencies within your nvim-jdtls configuration like the following, but this is not recommended.
config.settings = {
java = {
project = {
referencedLibraries = {
'/path/to/dependencyA.jar',
'/path/to/dependencyB.jar',
},
}
}
}
If you modify files outside of Neovim (for example with a git checkout), the
language client and language server may not detect these changes and the state
of the file on disk diverges with the mental model of the language server. If
that happens, you need to open all changed files within Neovim and reload them
with :e!
to synchronize the state.
This is expected. The Neovim shiftwidth
and tabstop
settings have a higher
priority.