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

1. 装jdk

自动配置环境变量

2. idea配置git

git config --global user.name "xxx"
git config --global user.email "[email protected]"

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’ : ‘’)}else{result+=’ * @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导入导出书签

猜你喜欢

转载自blog.csdn.net/qq_40985985/article/details/125327799