jdk1.8
maven 3.6
配置maven使用阿里云镜像
settings.xml
<mirrors> <mirror> <id>nexus-aliyun</id> <name>aliyun maven</name> <url>http://maven.aliyun.com/nexus/content/groups/public/</url> <mirrorOf>central</mirrorOf> </mirror> </mirrors> <profiles> <profile> <id>jdk-1.8</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> </profiles>
配置idea使用maven
File——settings
安装lombok
能简化javabean
安装mybatisx
我没找到mybatisx,装的是free mabatis plugin
安装vscode
我已安装HBuilder了