JAVA IDEA切换新机器配置环境一览

Posted 程序媛一枚~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA IDEA切换新机器配置环境一览相关的知识,希望对你有一定的参考价值。

1. 装jdk

自动配置环境变量

2. idea配置git

git config --global user.name "xxx"
git config --global user.email "xxx@xx.com"

3. idea配置maven

解压apache-maven-xxx.jar,配置环境变量MAVEN_HOME,PATH增加%MAVEN_HOME%\\bin
settings.xml
maven-repository

遇到问题:

0.0.0.0 account.jetbrains.com
0.0.0.0 www.jetbrains.com
0.0.0.0 plugins.jetbrains.com
0.0.0.0 resources.jetbrains.com

4. IDEA配置lombok

settings->plugins->lombok——install from disk
重启

5. IDEA配置注释

template text

** 
 * @Author: Sxx
 * @Date: $date$ $time$
 * @Description: TODO
$params$ 
$return$ 
 */ 

method

groovyScript(“def result=‘’; def params=”$_1“.replaceAll(‘[\\\\[|\\\\]|\\\\s]’, ‘’).split(‘,’).toList(); for(i = 0; i < params.size(); i++) if(i==0)result+=’ * @param ’ + params[i] + ((i < params.size() - 1) ? ‘\\n’ : ‘’)elseresult+=’ * @param ’ + params[i] + ((i < params.size() - 1) ? ‘\\n’ : ‘’); return result”, methodParameters())

return

groovyScript(“return “KaTeX parse error: Can't use function '\\"' in math mode at position 5: _1\\̲"̲ == 'void' ? ' …_1””, methodReturnType())

6. IDEA配置热部署

7. 装navicat,notepad++,everything,postman

8. postman导入导出collection

9. google导入导出书签

以上是关于JAVA IDEA切换新机器配置环境一览的主要内容,如果未能解决你的问题,请参考以下文章

IDEA# 快速生成logger通过Maven的profile配置实现环境的快速切换常用基础设置

IDEA : 2022.1 版本更新内容一览

IntelliJ Idea中使用Java8新特性lambda表达式

Idea配置springboot多环境的切换的五种方案

Ubuntu的Java环境变量

idea插件开发- hello world