setting和other setting的区别
1.setting设置的是局部变量
2.other setting设置的是全局变量,即新打开的IDEA窗口也会生效。
一.常用配置
1.关闭重复代码提示(IDEA去掉波浪线)
other setting -> Editor -> Inspections -> General -> Duplicated code fragment 取消勾选
2.IDEA去掉xml中黄色背景
other setting -> Editor -> inspections -> SQL-> No data sources configured(没有配置数据源)和 SQL dialect detection(SQL方言检测) 取消勾选
3.Intellij IDEA 自动生成 serialVersionUID
other setting -> Editor -> inspections -> Serialization issues -> Serializable class without ’serialVersionUID’ 选中,在你的class中:Alt+Enter就会提示自动创建serialVersionUID了。
4.关闭Intellij IDEA自动更新
File->Settings->Appearance & Behavior->System Settings->Updates下取消Automatically check updates for勾选
5.设置自动引入包
other setting -> Editor -> General -> Auto Import
6.隐藏.idea文件夹和.iml等文件
File->Settings -> Editor -> File Types 下的”Ignore files and folders”一栏添加 *.idea;*.iml;
7.控制台输出乱码,修改IDEA配置文件
1.设置所有文件为UTF-8编码 other setting -> Editor -> File Encodings 将所有编码都设置为UTF-8模式
2.修改idea配置文件 IDEA安装目录,将2个idea64.exe.vmoptions、idea.exe.vmoptions文件,追加:-Dfile.encoding=UTF-8
二.注释配置
添加类注释和方法注释
File-> setting -> Editor -> Live Templates
1.选择右上方+号,添加Template Group : userDefined
2.添加Live Template 方法注释:* 和 类注释:cc
1.类注释
快捷键:cc
/**
* Title $NAME$
* Description $END$
* @author Chenyl
* @date $DATE$ $TIME$
**/
2.方法注释
快捷键:/*
*
* $START$
* Method $NAME$
* @author Chenyl
* @date $DATE$ $TIME$
**/
三.常用插件
1.Free Mybatis plugin
free-idea-mybatis是一个提高mybatis编码的插件。实现了dao代码跳转到mapper,mapper跳转回dao,mapper文件、params自动生成功能。
2.Lombok
Lombok能以简单的注解形式来简化JAVA代码,提高开发人员的开发效率.
Lombok能通过注解的方式,在编译时自动为属性生成构造器、getter/setter、equals、hashcode、toString方法。
3.Mybatis-log-plugin
查看MySQL完整日志:参数自动赋值到占位符中,生成数据库可执行SQL,将SQL复制到数据库中执行,就能很快定位到问题了
4.GitToolBox
git工具箱,提供各种git操作。
1. git有更新都会提醒下载最新代码
2.查看历史提交记录
把鼠标放在;后面就可以查看是谁提交的