实际操作步骤:
1.代码下载
下载下来的文件目录
2.使用编辑器打开hello-world项目
3.进行配置
配置JDK ,File——》Settings
File——》Project Structure
配置maven
说明:不用下载新的maven,用工具自带的,需要将settings文件内容替换为:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
https://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<!--阿里镜像的配置-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
</settings>
如果配置好之后,编译项目提示缺少包,则进行如下操作,右键项目,点击如下:
然后再进行编译,运行成功之后的输出如下: