1、用到的核心技术架构:
Spring boot
Spring、Spring MVC、MyBatis
Redis、Kafka、Elasticsearch
Spring Security、Spring Actuator
2、开发环境
构建工具:Apache Maven
集成开发工具:IntelliJ IDEA
数据库:MySQL、Redis
应用服务器:Apache Tomact
版本控制:git
配置环境:
查询jdk安装路径:
终端输入:/usr/libexec/java_home -V
本机为java se 8,jdk1.8版本
Apache Maven
帮我们构建项目中的jar包
Maven仓库:存放构建的位置
-本地仓库:默认说~/.m2/repository
-远程仓库:中央仓库、镜像仓库、私服仓库
maven可以配置镜像仓库,但是目前笔者在国外,先不考虑配置阿里云的仓库,但是如果后期慢点话可以在1.2配置安装环境 8分钟后看如何配置
配置maven:
找设置mac环境变量
open ~/.bash_profile
配置半天终端,配好了mvn -v之后又not found了,经查询之后找到以下解决方法,source:
https://blog.csdn.net/Janson_Lin/article/details/121285363
echo 'source ~/.bash_profile'>>~/.bash_profile
今天先这样吧,好累zzz