配置开发环境
需要使用的软件有jdk8以上,maven,IDEA同时配置插件lombok和mybatisX。
配置maven
修改apache-maven\src\conf 目录下的settings:
<mirrors>
<mirror>
<id>alimaven</id>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
<mirrorOf>central</mirrorOf>
</mirror>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>
</mirrors>
默认使用阿里的源,会快很多。
修改maven下的jdk版本
<profile>
<id>jdk18</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
添加自己的maven到IDEA
初始化GIT连接码云
在git bush中输入个人信息,并获取密匙:
git config --global user.name "yhm"
git config --global user.email "xxxxxxxx@qq.com"
ssh-keygen -t rsa -C "xxxxxxx@qq.com"
cat ~/.ssh/id_rsa.pub
将输出的ssh-rsa开头的内容绑定到码云的SSH公匙中