- 使用的技术架构
springBoot
Spring MVC, myBatis
Redis,kafka,Elasticsearch
Spring Security, Spring Actuator - 开发环境
构建工具:MAVEN
开发工具:IDEA
数据库:MySQL, Redis
应用服务器:TOMCAT
版本控制工具:Git
3.MAVEN
本地仓库 .m/repository
远程仓库:中央仓库,镜像仓库
MAVEN可以编译,测试,管理包 - IDEA
集成了MAVEN,配置指定的MAVEN - Spring intializr
底层还是MAVEN
.jar
springBoot 2.3.4
导入包:web,Thymeleaf,devtools(开发者工具,每次不需要重启服务器)
5 测试搭建
# ServerProperties
server.port=8080
server.servlet.context-path=/community
@Controller
@RequestMapping("/alpha")
public class AlphaController {
@RequestMapping("/hello")
@ResponseBody
public String hello(){
return "hello!springBoot";
}
}
结果