mac下java开发环境搭建

目录

 

1.idea下载激活

2.安装jdk

3.安装maven

4.安装git

5.Postman 安装

6.navicat 下载地址

7.mysql 下载及安装

8.item 下载


1.idea下载激活

http://idea.medeming.com/jets/

2.安装jdk

https://www.cr173.com/mac/122803.html

3.安装maven

下载maven并解压  下载地址:http://maven.apache.org/download.cgi

vim ~/.bash_profile

录入

export M2_HOME=/Users/xxx/Documents/maven/apache-maven-3.6.1

export PATH=$PATH:$M2_HOME/bin

source ~/.bash_profile

mvn -v 检验安装成功

4.安装git

git config --global user.name “hanzl”

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

ssh-keygen -t rsa -C "[email protected]"

生成的公钥在  /Users/mac/.ssh/id_rsa.pub文件里

完整步骤可参考

https://www.jianshu.com/p/7edb6b838a2e

5.Postman 安装

下载地址:http://www.pc6.com/mac/224724.html

6.navicat 下载地址

7.mysql 下载及安装

请参考:https://blog.csdn.net/hanzl1/article/details/82632620

8.item 下载

http://www.pc6.com/mac/302472.html

 

你可能感兴趣的:(环境部署)