logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

spring boot 整合jedis

## 导入依赖<dependency><groupId>redis.clients</groupId><artifactId>jedis</artifactId></dependency>配置文件spring:redis:port: 6379host: 192.168.255.128password: rootjedis:po

spring boot整合 lettuce

导入依赖<!--spring boot 2.0以后默认使用lettuce--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency

spring boot 整合mybatisPlus-Generator Swagger

第一步导入依赖<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.4.0</version></dependency><-- 自动代码生成器模

spring boot整合 lettuce

导入依赖<!--spring boot 2.0以后默认使用lettuce--><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency

spring boot redis配置类

配置redisTemplate 模板 和 注册redis缓存管理器@EnableCaching@Configurationpublic class customRedisConfig extendsCachingConfigurerSupport {@Beanpublic RedisTemplate<String, Object> redisTemplate(RedisConnecti

spring boot 整合mybatisPlus-Generator Swagger

第一步导入依赖<dependency><groupId>com.baomidou</groupId><artifactId>mybatis-plus-boot-starter</artifactId><version>3.4.0</version></dependency><-- 自动代码生成器模

spring boot 测试 阿里云上传图片 返回图片地址

第一步 开通阿里云oss服务获得密钥https://www.aliyun.com/product/oss第二步 配置maven依赖<dependency><groupId>com.aliyun.oss</groupId><artifactId>aliyun-sdk-oss</artifactId><version>3.10.2

到底了