Title: spring-boot LS does not work and does not show up in lsp logs · Issue #28 · JavaHello/spring-boot.nvim · GitHub
Open Graph Title: spring-boot LS does not work and does not show up in lsp logs · Issue #28 · JavaHello/spring-boot.nvim
X Title: spring-boot LS does not work and does not show up in lsp logs · Issue #28 · JavaHello/spring-boot.nvim
Description: Issue: :checkhealth vim.lsp command never shows spring-boot LS and suggestions do not work in application.yml/application.properties. Description: My setup: vscode-spring-boot-tools and jdtls installed with Mason. nvim-jdtls setup with f...
Open Graph Description: Issue: :checkhealth vim.lsp command never shows spring-boot LS and suggestions do not work in application.yml/application.properties. Description: My setup: vscode-spring-boot-tools and jdtls insta...
X Description: Issue: :checkhealth vim.lsp command never shows spring-boot LS and suggestions do not work in application.yml/application.properties. Description: My setup: vscode-spring-boot-tools and jdtls insta...
Opengraph URL: https://github.com/JavaHello/spring-boot.nvim/issues/28
X: @github
Domain: github.com
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"spring-boot LS does not work and does not show up in lsp logs","articleBody":"### Issue:\n`:checkhealth vim.lsp` command never shows `spring-boot` LS and suggestions do not work in `application.yml/application.properties`.\n\n### Description:\n#### My setup:\n1. `vscode-spring-boot-tools` and `jdtls` installed with Mason.\n2. `nvim-jdtls` setup with `ftplugin`.\n3. `lazy.nvim` configuration for `nvim-jdtls` and `spring-boot.nvim`:\n``` lua\n{\n \"mfussenegger/nvim-jdtls\",\n dependencies = { \"mfussenegger/nvim-dap\" }\n},\n{\n \"JavaHello/spring-boot.nvim\",\n dependencies = { \"mfussenegger/nvim-jdtls\" },\n lazy = true,\n opts = {}\n}\n```\n4. My `ftplugin` config for java and yaml:\n``` lua\nlocal data_path = \"...\" -- path to constructed data directory for the project\nlocal jdtls_bin = \"...\" -- path to JDTLS binary\nlocal lombok_jar = \"...\" -- path to Lombok jar\nlocal bundles = {}\nvim.list_extend(bundles, require(\"spring_boot\").java_extensions())\nvim.list_extend(bundles, vim.split(vim.fn.glob(\".../vscode-java-test/server/*.jar\"), \"\\n\"))\nvim.list_extend(bundles, vim.split(vim.fn.glob(\".../java-debug/com.microsoft.java.debug.plugin/target/*.jar\"), \"\\n\"))\njdtls.start_or_attach({\n cmd = {\n jdtls_bin,\n \"--jvm-arg=-javaagent:\" .. lombok_jar,\n \"-data\", data_path\n },\n root_dir = vim.fs.dirname(vim.fs.find({ \"gradlew\", \".git\", \"mvnw\" }, { upward = true })[1]),\n init_options = { bundles = bundles }\n})\n```\n5. The `jdtls` LS works well, completion in java files is present, no issues. The `:checkhealth vim.lsp` command always show it properly. `java-test` setup and debugging also work fine.\n\n#### The problem:\n\n1. The `spring-boot` LS never shows up in `:checkhealth vim.lsp` or `lsp.log` .\n2. Sometimes when I open java or yaml file I get the message `Spring Boot LS is not installed`.\n(I can fix this one by manually providing `ls_path` to the opts in `spring-boot.nvim` configuration, but it looks like something else is wrong)","author":{"url":"https://github.com/keen-dot-dev","@type":"Person","name":"keen-dot-dev"},"datePublished":"2025-07-19T19:53:15.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":9},"url":"https://github.com/28/spring-boot.nvim/issues/28"}
| route-pattern | /_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format) |
| route-controller | voltron_issues_fragments |
| route-action | issue_layout |
| fetch-nonce | v2:abb25a45-4564-815b-2ad7-4bb486e45b35 |
| current-catalog-service-hash | 81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114 |
| request-id | 9528:276C72:322F978:44642A8:6A53EAA7 |
| html-safe-nonce | 7319b9941ac12abf4e51d2889b2ebf07ca21a8a6ddc221b95f43603fea63c64f |
| visitor-payload | eyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NTI4OjI3NkM3MjozMjJGOTc4OjQ0NjQyQTg6NkE1M0VBQTciLCJ2aXNpdG9yX2lkIjoiNzEzNDc1OTg1MDk2MjMxNTk0MyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9 |
| visitor-hmac | 6039dc81484704a93586fe727f1fd617fd7a9cb9c46b6ce9652d054115926f51 |
| hovercard-subject-tag | issue:3245603061 |
| github-keyboard-shortcuts | repository,issues,copilot |
| google-site-verification | Apib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I |
| octolytics-url | https://collector.github.com/github/collect |
| analytics-location | / |
| fb:app_id | 1401488693436528 |
| apple-itunes-app | app-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/JavaHello/spring-boot.nvim/28/issue_layout |
| twitter:image | https://opengraph.githubassets.com/5f97963c12fb52ed0c7f7e1850656b29a65941ae03b934e3edbebb151d7f77df/JavaHello/spring-boot.nvim/issues/28 |
| twitter:card | summary_large_image |
| og:image | https://opengraph.githubassets.com/5f97963c12fb52ed0c7f7e1850656b29a65941ae03b934e3edbebb151d7f77df/JavaHello/spring-boot.nvim/issues/28 |
| og:image:alt | Issue: :checkhealth vim.lsp command never shows spring-boot LS and suggestions do not work in application.yml/application.properties. Description: My setup: vscode-spring-boot-tools and jdtls insta... |
| og:image:width | 1200 |
| og:image:height | 600 |
| og:site_name | GitHub |
| og:type | object |
| og:author:username | keen-dot-dev |
| hostname | github.com |
| expected-hostname | github.com |
| None | b9a586c06a05a7a86fc7e3f4dbd03e42f6869085879aa184aa6369456dbd50fb |
| turbo-cache-control | no-preview |
| go-import | github.com/JavaHello/spring-boot.nvim git https://github.com/JavaHello/spring-boot.nvim.git |
| octolytics-dimension-user_id | 24937965 |
| octolytics-dimension-user_login | JavaHello |
| octolytics-dimension-repository_id | 785555003 |
| octolytics-dimension-repository_nwo | JavaHello/spring-boot.nvim |
| octolytics-dimension-repository_public | true |
| octolytics-dimension-repository_is_fork | false |
| octolytics-dimension-repository_network_root_id | 785555003 |
| octolytics-dimension-repository_network_root_nwo | JavaHello/spring-boot.nvim |
| turbo-body-classes | logged-out env-production page-responsive |
| disable-turbo | false |
| browser-stats-url | https://api.github.com/_private/browser/stats |
| browser-errors-url | https://api.github.com/_private/browser/errors |
| release | 07a982c1d40157c619b364352b704c3ce66bb332 |
| ui-target | full |
| theme-color | #1e2327 |
| color-scheme | light dark |
Links:
Viewport: width=device-width