相关图文配置:https://zhuanlan.zhihu.com/p/413305008
IDEA 启动、提示、光标、代码阅读很卡的情况
Help 》Edit Custom VM Options
-XX:ReservedCodeCacheSize=2048m
-Xms2048m
-Xmx4096m
-XX:+UseG1GC
-XX:+IgnoreUnrecognizedVMOptions
-XX:SoftRefLRUPolicyMSPerMB=50
-XX:CICompilerCount=2
-XX:+HeapDumpOnOutOfMemoryError
-XX:-OmitStackTraceInFastThrow
-ea
-Dsun.io.useCanonCaches=false
-Djdk.http.auth.tunneling.disabledSchemes=""
-Djdk.attach.allowAttachSelf=true
-Djdk.module.illegalAccess.silent=true
-Dkotlinx.coroutines.debug=off
-XX:ErrorFile=$USER_HOME/java_error_in_idea_%p.log
-XX:HeapDumpPath=$USER_HOME/java_error_in_idea.hprof
插件
- p3c:Alibaba Java Coding Guidelines
- sona:SonarLint
- google翻译:Translation
- mybatis:MybatisX
- Lombok:Lombok
- 解决maven依赖冲突:Maven Helper
修改相关快捷键对应的名称:Setting——》Keymap
删除当前行:Delete Line
向上下移动当前行:Move Line Up / Down
复制当前行:Duplicate Entire Lines
自动生成getter和setter方法:Generate
打印syso快捷键:Editor——》Live Templates——》output
全局查找:Find in path(默认快捷键Ctrl+Shift+F)
关闭当前窗口:close(默认为Ctrl+F4)
方法实现调用:Implementions
方法使用:Declaration or Usages
自动方法生成:Generate(默认为Alt+Insert)
压缩至一行(适用Json):Join Line
Setting——》Editor
database查询中文乱码:Editor——》Color Scheme Font——》font 字体改为Monospaced
文件标签显示多行:Editor——》General——》Editor tabs——》show table in single row
提示忽略大小写:Editor——》General——》Code Completion——》Match case
生成序列化ID:Editor——》Inspections——》搜索Serializable class without 'serialVersionUID'
折叠注释:Editor——》General——》Code Folding——》Documentation comments
滚轮调节字体大小:Editor——》General——》Change font size with Ctr+Mouse Wheel
在方法上生成注释:Editor——》Live Templates——》“+”——》Template Group
**
* @function
* @author XLJ
* @date $date$ $time$
*/
创建类的默认注释:
Setting——》Version Control
修改文件颜色:——》File Status Colors
显示commit 边栏:setting——》version contrl ——》commit ——》勾选上use no-modal commit interface
项目创建配置
编码格式:Editor——File Encoudings
文件生成过滤(忽略):Editor——File Types(*.idea;*.iml;
)
注解开启:Builder,Execution,Deployment——Compile——Annotation Processors
项目Java版本:Builder,Execution,Deployment——Compile——JavaCompiler
中英文大小不一致
控制台显示全部日志
开启内存监控
Settings ➡ Appearance & Behavior ➡ Appearance:Window Options栏 Show memory indicator
使用Token绑定Git
- 使用个人账号登github
- Settings->Developer settings->Personal access tokens->Generate new token
- 描述 + 勾选权限
- 复制生成的Token
- idea使用Token登录
——Terminal终端设置
- Tools——》Terminal ——》Shell path 中可替换成 powershell,通常路径为:
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe
- 如果部分命令无法使用,检查环境配置,在当前页《Environment Variable》下添加环境配置
——Vue项目相关
- 创建Vue项目
- 启动vue项目配置
- package.json文件
- –open:启动即打开视图
- – --port 8095:修改默认端口可在server中加入,为临时端口
"scripts": {
"serve": "vue-cli-service serve --open",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
}
- vue打包命令:
npm run builde