uniapp和springboot微信小程序开发实战:后端架构搭建之创建springboot项目

文章目录

  • 使用STS创建boot项目
  • 引入项目依赖
  • 配置相关信息
    • 配置tomcat
    • 配置redis
    • 配置mysql数据库
  • 6.启动服务验证搭建环境

使用STS创建boot项目

打开STS,新建Spring Starter Project项目,出现如下所示界面,根据提示填写图片上需要填写的内容。

uniapp和springboot微信小程序开发实战:后端架构搭建之创建springboot项目_第1张图片

引入项目依赖


		
			org.springframework.boot
			spring-boot-starter-data-redis-reactive
		
		
		
			org.springframework.boot
			spring-boot-star

你可能感兴趣的:(spring,boot,uni-app,微信小程序)