Spring Boot项目环境搭建

需要用到的软件

一、JDK8
自行安装与配置
二、 MySQL
自行安装与配置
三、Maven安装与配置

  • 下载
    地址:http://maven.apache.org/download.cgi
  • 安装
    说明文档:http://maven.apache.org/install.html
    小坑:如果IDEA版本过低,请勿下载Maven3.6.x
    验证:mvn -version
  • Aliyun Maven镜像
    • 作用:加速jar包下载
    • 配置说明:https://help.aliyun.com/document_detail/102512.html
      打开maven的配置文件(windows机器一般在maven安装目录的conf/settings.xml),在标签中添加mirror子节点

    aliyunmaven
    # 表示中央仓库的jar包才从阿里云下载
    central
    阿里云公共仓库
    https://maven.aliyun.com/repository/public

四、IDEA配置与快捷键技巧

  • 在IDEA中配置Maven


    Maven在IDEA中配置
  • 快捷键技巧
    • macOs:CheatSheet
    • Windows:HotKey Explorer、HotKey Commander、快捷键说明

你可能感兴趣的:(Spring Boot项目环境搭建)