idea相关设置

idea常用配置

控制台中文乱码

包括tomcat日志输出和idea控制台输出中文都乱码
解决步骤:,
找到idea配置文件 idea.exe.vmoption(32位系统)或者idea64.exe.vmoption,有时候更新idea版本没有卸载之前可以打开idea选择HELP->Edit Custom VM OPtions中加
  • Dfile.encoding=utf-8
设置idea file编码。在菜单栏找到”File->settings->搜索File Encodeing” 设置utf-8。
notion image
设置idea server编码。在菜单栏找到”run->editconfigration” 找到”server”选项卡 设置 vm option为 -Dfile.encoding=utf-8
notion image
自定义注释模板
类注释模板
notion image
 
/** - @description ${description} <br/> - @author name <br/> - @create: ${YEAR}-${MONTH}-${DAY} ${HOUR}:${MINUTE} <br/> - @since 2.3 <br/> - /
 
方法自定义模板
settings => live templates ==>选择最右+号添加 template group==>Live Templates 添加模板
Abbreviation缩写用 *
notion image
3.template text用下面内容开头不要/,从*号开始
  • *
* @description
* @author wangjie
* @date $date$ $time$
$param$
$return$
*/
4.给模板变量赋值
notion image
param变量和return变量一定要写在默认值里
param
groovyScript("if(\"${_1}\".length() == 2) {return '';} else {def result=''; def params=\"${_1}\".replaceAll('[\\\\[|\\\\]|\\\\s]', '').split(',').toList();for(i = 0; i < params.size(); i++) {if(i==0){result+='* @param ' + params[i] + ': '}else{result+='\\n' + ' * @param ' + params[i] + ': '}}; return result;}", methodParameters());
return
groovyScript("def returnType = \"${_1}\"; def result = '* @return: ' + returnType; return result;", methodReturnType());
5. 设置作用范围
notion image
live template的使用
修改注释颜色,字体
修改颜色
notion image
修改字体
点击front
常用快捷键
ctrl+shift+f :全局搜索,可选择指定的范围搜索关键字 ctrl+shift+r:全局替换
notion image
ctrl+shift+u idea 大小写转换
CTRL+shift+z取消回退
ctrl+alt+鼠标左键直接跳转实现类方法
ctrl+q 查看java文档
ctrl+shift+T 生成测试类
ctrl+alt+左右键回退到光标上一处或下一处的位置
在IDEA工具中, Ctrl+空格 的快捷键,可以帮助我们补全代码,但是这个快捷键和Windows中的输入法切换快捷键冲突,需要修改IDEA中的快捷键。
File->Settings->keymap->Main menu->code->Completion->Basic
notion image
改成alt+/
同一窗口打开多个项目
常用插件
1.Alibba Java Guides (代码规约扫描插件)
2.SonarLint(代码质量)
3.maven helper
4.Lombok
5.JRebel 热部署插件(破解方法)
6.Free MyBatis plugin
8. 版本控制过滤 .ignore插件
9.GenerateSerialVersionUid
10.vmlaucher(内存监控)
11. SequenceDiagram 类调用时序图
12 Mybatis Log Plugin mybatis日志插件
notion image
notion image
监控日志
notion image

解决配置文件乱码

notion image
选中乱码文字区域,点击红框
notion image

idea修改快捷键

补全代码
在IDEA工具中, Ctrl+空格 的快捷键,可以帮助我们补全代码,但是这个快捷键和Windows中的输入法切换快捷 键冲突,需要修改IDEA中的快捷键。 File->Settings->keymap->Main menu->code->Completion->Basic,换成Alt+/

修改idea默认maven的镜像为国内

D:\devtool\IntelliJ IDEA 2020.1.2\plugins\maven\lib\maven3
找到该目录

idea自动编译设置

1.使用快捷键 Shift+Ctrl+Alt+/,选择第一项Registry
notion image
2
notion image