使用sts需要配置以下几个选项
1.设置工作空间的编码格式
General–》Workspace
2 设置编辑格式
General–》Editors–》Text Editors–》Spelling
3 限制文档自动下载
General—>Editors—>Text Editors—>Hyperlingking
4 取消Validation所有的选项
Validation
5.配置maven镜像厂库
5.1 配置maven厂库的位置
5.2 配置maven本地配置文件
5.3 本地maven安装和配置
5.3.1 下载maven文件
官网位置:https://maven.apache.org/
5.3.2 配置本地配置文件
5.3.2.1 打开下载后的文件
找到 conf—》setting.xml
5.3.2.2 配置本地镜像厂库下载的位置
<localRepository>${user.home}/.m3/repository</localRepository>
5.3.2.3 配置远程镜像的位置
<mirror>
<id>CN</id>
<mirrorOf>central</mirrorOf>
<name>OSChina Central</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
5.3.2.3 配置jdk版本问题
<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>