1.new project新建maven 项目,springboot3.x版本要求jdk17i以上
2.pom.xml中配置spring-boot-start-parent 3.1.2
3.依赖添加 spring-boot-start-web,spring-boot-starter-data-redis
4.添加打包插件 build-plugins-plugin-spring-boot-maven-plugin
5.加载maven文件
6.添加主函数,做好注解
7.添加controller包,在包里头添加RedisController类
8.引入StringRedisTemplate,请Autowired注入
9.添加映射方法 incr,作用是当用户发送incr请求时,key对应的值自增
10.long v=redisTemplateFosValue().increment("key");
11.响应当前key所对应的值 return v