当前位置: 首页 > news >正文

Neovim 下Java开发的环境配置


tags: Java Vim
categories: Java

写在前面

秋招基本上结束了, C++算是告一段落, 但是学习之路才刚刚开始.

下面写一下 Nvim 上 Java 开发的一些基本配置, 还是延续了以往的轻量级开发环境搭建方法, Nvim 的配置可以看我之前的文章.

光会 C++不行, 后端语言还得看 Java/Go

下面的配置主要针对 Java 开发的代码补全, 代码格式化等操作, 用到的插件是

  • clang-format(没错, 这个万能插件可以格式化 Java)
  • nvim-jdtls(相当于是对 eclipse-jdtls 的一层封装, 比较好用的, 之所以不用 java-language-server 是因为这个插件的维护还是差点意思)

参考了 GitHub 的一些文档:

  • mfussenegger/nvim-jdtls: Extensions for the built-in LSP support in Neovim for eclipse.jdt.ls;
  • eclipse-jdtls/eclipse.jdt.ls: Java language server;

安装 jdtls

不能通过 Mason 安装 jdtls, 只能自己下载压缩包, 因为通过 mason 安装的 jdtls 只有可执行文件而没有 jar 等配置包.

首先下载压缩包, 这里就下载最新版了:

  • Project download area | The Eclipse Foundation;

然后解压, 随便找一个目录

我这里的目录在:

 ==> pwd
/Users/xxx/code/java_code/tools/jdtls √  ~/code/java_code/tools/jdtls==> ls
bin                 config_mac          config_ss_linux_arm config_ss_win       log_data
config_linux        config_mac_arm      config_ss_mac       config_win          plugins
config_linux_arm    config_ss_linux     config_ss_mac_arm   features

然后就是配置代码检查插件了, 这里有几个坑点:

  • 主要修改的几个路径

    – 💀 标记出来的

    必须用绝对路径, 使用$HOME/都不行

  • data 路径可以指定在 jdtls 的安装路径下, 但是像这样的缓存最好每一个项目独立一份比较好, 我这里是在安装路径下 mkdir 了log_data目录

代码检查插件

配置:

plugins:

lang["mfussenegger/nvim-jdtls"] = {lazy = true,ft = "java",config = require("lang.nvim-jdtls"),
}

config:

return function()-- See `:help vim.lsp.start_client` for an overview of the supported `config` options.local config = {-- The command that starts the language server-- See: https://github.com/eclipse/eclipse.jdt.ls#running-from-the-command-linecmd = {-- 💀"java", -- or '/path/to/java17_or_newer/bin/java'-- depends on if `java` is in your $PATH env variable and if it points to the right version."-Declipse.application=org.eclipse.jdt.ls.core.id1","-Dosgi.bundles.defaultStartLevel=4","-Declipse.product=org.eclipse.jdt.ls.core.product","-Dlog.protocol=true","-Dlog.level=ALL","-Xmx1g","--add-modules=ALL-SYSTEM","--add-opens","java.base/java.util=ALL-UNNAMED","--add-opens","java.base/java.lang=ALL-UNNAMED",-- 💀"-jar","/Users/xxx/code/java_code/tools/jdtls/plugins/org.eclipse.equinox.launcher_1.6.500.v20230717-2134.jar",-- "/path/to/jdtls_install_location/plugins/org.eclipse.equinox.launcher_VERSION_NUMBER.jar",-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^                                       ^^^^^^^^^^^^^^-- Must point to the                                                     Change this to-- eclipse.jdt.ls installation                                           the actual version-- 💀"-configuration","/Users/xxx/code/java_code/tools/jdtls/config_mac",-- "/path/to/jdtls_install_location/config_SYSTEM",-- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        ^^^^^^-- Must point to the                      Change to one of `linux`, `win` or `mac`-- eclipse.jdt.ls installation            Depending on your system.-- 💀-- See `data directory configuration` section in the README"-data","/Users/xxx/code/java_code/tools/jdtls/log_data/",-- "/path/to/unique/per/project/workspace/folder",},-- 💀-- This is the default if not provided, you can remove it. Or adjust as needed.-- One dedicated LSP server & client will be started per unique root_dirroot_dir = require("jdtls.setup").find_root({ ".git", "mvnw", "gradlew" }),-- 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 optionssettings = {java = {},},-- Language server `initializationOptions`-- You need to extend the `bundles` with paths to jar files-- if you want to use additional eclipse.jdt.ls plugins.---- See https://github.com/mfussenegger/nvim-jdtls#java-debug-installation---- If you don't plan on using the debugger or other eclipse.jdt.ls plugins you can remove thisinit_options = {bundles = {},},}-- This starts a new client & server,-- or attaches to an existing client & server depending on the `root_dir`.require("jdtls").start_or_attach(config)
end

格式化插件

改一下clang-format 的配置, 加上支持 Java 即可, 注意 config 也有相应改动

return function()local null_ls = require("null-ls")local btns = null_ls.builtins-- Please set additional flags for the supported servers here-- Don't specify any config here if you are using the default one.local sources = {btns.formatting.clang_format.with({filetypes = { "c", "cpp", "java" }, -- change thisextra_args = require("completion.formatters.clang_format"),}),

针对单项目设置: .clang-format 文件

BasedOnStyle: Google
---
Language: Java
IndentWidth: 4
ColumnLimit: 100
BreakStringLiterals: true
BreakAfterJavaFieldAnnotations: false
BraceWrapping:AfterCaseLabel: trueAfterClass: trueAfterControlStatement: trueAfterEnum: trueAfterFunction: trueAfterNamespace: trueAfterObjCDeclaration: trueAfterStruct: trueAfterUnion: trueAfterExternBlock: trueBeforeCatch: trueBeforeElse: trueIndentBraces: trueSplitEmptyFunction: falseSplitEmptyRecord: falseSplitEmptyNamespace: false

相关文章:

  • 浏览器全屏和退出全屏
  • 基于AI与物联网技术的智能视频监控系统架构剖析
  • 车载电子电器架构 —— 基于AP定义车载HPC
  • 开源利器:it-tools 项目介绍
  • 3.4每日一题(变量可分离方程通解)
  • 【点云学习PCL 】一
  • 深度学习简史
  • Windows内存取证-中等难度 -上篇
  • 行业追踪,2023-10-30
  • 计算机网络_04_传输层
  • 逻辑斯蒂回归
  • UE5 日记(人物连招:蒙太奇动画通知(含视频链接))
  • 【每日一题Day363】LC275H 指数Ⅱ | 二分答案
  • iOS调试技巧——使用Python 自定义LLDB
  • Cannot connect to the Docker
  • Android Volley源码解析
  • C# 免费离线人脸识别 2.0 Demo
  • canvas 高仿 Apple Watch 表盘
  • Consul Config 使用Git做版本控制的实现
  • golang中接口赋值与方法集
  • laravel 用artisan创建自己的模板
  • Redis在Web项目中的应用与实践
  • SAP云平台里Global Account和Sub Account的关系
  • SQLServer之创建数据库快照
  • Stream流与Lambda表达式(三) 静态工厂类Collectors
  • 半理解系列--Promise的进化史
  • 给新手的新浪微博 SDK 集成教程【一】
  • 看完九篇字体系列的文章,你还觉得我是在说字体?
  • 买一台 iPhone X,还是创建一家未来的独角兽?
  • 如何打造100亿SDK累计覆盖量的大数据系统
  • 如何使用 OAuth 2.0 将 LinkedIn 集成入 iOS 应用
  • 想使用 MongoDB ,你应该了解这8个方面!
  • # centos7下FFmpeg环境部署记录
  • #android不同版本废弃api,新api。
  • #Java第九次作业--输入输出流和文件操作
  • $con= MySQL有关填空题_2015年计算机二级考试《MySQL》提高练习题(10)
  • (1)(1.9) MSP (version 4.2)
  • (8)STL算法之替换
  • (python)数据结构---字典
  • (Redis使用系列) Springboot 实现Redis消息的订阅与分布 四
  • (Redis使用系列) Springboot 使用Redis+Session实现Session共享 ,简单的单点登录 五
  • (附源码)springboot“微印象”在线打印预约系统 毕业设计 061642
  • (附源码)基于SSM多源异构数据关联技术构建智能校园-计算机毕设 64366
  • (十)DDRC架构组成、效率Efficiency及功能实现
  • (四)Tiki-taka算法(TTA)求解无人机三维路径规划研究(MATLAB)
  • (幽默漫画)有个程序员老公,是怎样的体验?
  • (转)关于pipe()的详细解析
  • (转)淘淘商城系列——使用Spring来管理Redis单机版和集群版
  • .gitignore文件---让git自动忽略指定文件
  • .NET 表达式计算:Expression Evaluator
  • .Net环境下的缓存技术介绍
  • .NET设计模式(11):组合模式(Composite Pattern)
  • @Bean注解详解
  • @RequestMapping 的作用是什么?
  • @Resource和@Autowired的区别