1. 使用的技术架构
    springBoot
    Spring MVC, myBatis
    Redis,kafka,Elasticsearch
    Spring Security, Spring Actuator
  2. 开发环境
    构建工具:MAVEN
    开发工具:IDEA
    数据库:MySQL, Redis
    应用服务器:TOMCAT
    版本控制工具:Git
    3.MAVEN
    本地仓库 .m/repository
    远程仓库:中央仓库,镜像仓库
    MAVEN可以编译,测试,管理包
  3. IDEA
    集成了MAVEN,配置指定的MAVEN
  4. 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";
    }
}

结果
在这里插入图片描述


版权声明:本文为zcc2018原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
原文链接:https://blog.csdn.net/zcc2018/article/details/108745937