常用插件
- Codeium: Free AI-powered code acceleration
- Java Bean to Json: A simple plugin for converting Java bean to JSON
- any rule: 正则表达式提供
- Protocol Buffers:Provides editor support for Protocol Buffers files
- pojo to proto:a plugin covert java pojo to proto
- GitToolBox:
- CodeGeeX: github coplit 国内免费的平替 CodeGeeX
自定义File头
settings -> File and Code Templates -> Includes -> File Header
/**
* @description:
* @date: $DATE
* @user:tiger
*/
自定义快捷模块
- 单例模式
private static class SingletonHolder {
private static final $class_name$ INSTANCE = new $class_name$();
}
public static $class_name$ getInstance() {
return SingletonHolder.INSTANCE;
}
常用快捷cmd
- Ctrl + J 这个快捷键,可以帮助我们筛选出对应的所有模版,然后选择就可以了