当前位置: 首页 > news >正文

网站设计策划书 模板怎么做地下彩票网站

网站设计策划书 模板,怎么做地下彩票网站,代运营公司是做什么的,文山州住房建设网站SpringBoot3整合Redis基础应用 配套视频#xff1a;SpringBoot3整合Redis基础操作视频 1. 概述 SpringBoot是一种用于构建Java应用程序的开发框架#xff0c;Redis是一个高性能的键值存储数据库#xff0c;常用于缓存、会话管理、消息队列等应用场景#xff0…SpringBoot3整合Redis基础应用 配套视频SpringBoot3整合Redis基础操作视频 1. 概述 SpringBoot是一种用于构建Java应用程序的开发框架Redis是一个高性能的键值存储数据库常用于缓存、会话管理、消息队列等应用场景本文将给大家介绍基于最新的的SpringBoot3基础上如何集成Redis并实现Redis基本应用操作。 环境准备 Java17 或更高Redis版本无要求 2. 整合过程 创建项目 Maven依赖 dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-web/artifactId /dependencydependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-data-redis/artifactId /dependencydependencygroupIdcom.mysql/groupIdartifactIdmysql-connector-j/artifactId /dependencydependencygroupIdorg.projectlombok/groupIdartifactIdlombok/artifactIdoptionaltrue/optional /dependency dependencygroupIdorg.springframework.boot/groupIdartifactIdspring-boot-starter-test/artifactIdscopetest/scope /dependencydependencygroupIdcom.baomidou/groupIdartifactIdmybatis-plus-boot-starter/artifactIdversion3.5.5/version /dependency !-- 注意mybatisplus会自动引用mybatis,但mybatis-spring版本和springboot3版本的spring会不匹配所以要升版本-- dependencygroupIdorg.mybatis/groupIdartifactIdmybatis-spring/artifactIdversion3.0.3/version /dependencyyml依赖注意先创建好一个数据库testdb server:port: 9999spring:data:redis:host: localhostport: 6379datasource:username: rootpassword: 123456url: jdbc:mysql:///testdb Redis配置类 Configuration EnableCaching public class RedisConfig {Beanpublic RedisTemplateString, Object redisTemplate(RedisConnectionFactory factory) {RedisTemplateString, Object redisTemplate new RedisTemplate();redisTemplate.setConnectionFactory(factory);redisTemplate.setKeySerializer(new StringRedisSerializer());redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());redisTemplate.setHashKeySerializer(new StringRedisSerializer());redisTemplate.setHashValueSerializer(new Jackson2JsonRedisSerializerObject(Object.class));return redisTemplate;}Beanpublic RedisCacheManager redisCacheManager(RedisTemplate redisTemplate) {RedisCacheWriter redisCacheWriter RedisCacheWriter.nonLockingRedisCacheWriter(redisTemplate.getConnectionFactory());RedisCacheConfiguration redisCacheConfiguration RedisCacheConfiguration.defaultCacheConfig().serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(redisTemplate.getValueSerializer()));return new RedisCacheManager(redisCacheWriter, redisCacheConfiguration);} }3. RedisTemplate操作 使用RedisTemplate进行常见的Redis操作如存储、检索和删除数据。 String // 普通字符串 String key1 user:token:0001; redisTemplate.opsForValue().set(key1, UUID.randomUUID().toString(), 30, TimeUnit.MINUTES); System.out.println(redisTemplate.opsForValue().get(key1));// 计数 String key2 article:A00001:viewsCount; redisTemplate.opsForValue().increment(key2); System.out.println(redisTemplate.opsForValue().get(key2));// 对象 HashMapString, Object user new HashMap(); user.put(id, 0001); user.put(name, 张三疯); user.put(age, 28); user.put(birthday, new Date(2008 - 1900, 10, 03)); String key3 user:0001; redisTemplate.opsForValue().set(key3, user); System.out.println(redisTemplate.opsForValue().get(key3));hash String key4 user:0001:cart; MapString, Object shoppingCart new HashMap(); shoppingCart.put(cartId, 123456789); shoppingCart.put(userId, 987654321);ListMapString, Object items List.of(Map.of(itemId, 1, itemName, 手机, price, 999.99, quantity, 1),Map.of(itemId, 2, itemName, 笔记本电脑, price, 1499.99, quantity, 2),Map.of(itemId, 3, itemName, 耳机, price, 49.99, quantity, 3) );shoppingCart.put(items, items); shoppingCart.put(totalAmount, 3149.92); shoppingCart.put(creationTime, 2046-03-07T10:00:00); shoppingCart.put(lastUpdateTime, 2046-03-07T12:30:00); shoppingCart.put(status, 未结账);redisTemplate.opsForHash().putAll(key4, shoppingCart); System.out.println(redisTemplate.opsForHash().get(key4, items));set String key5 author:0001:fans; redisTemplate.opsForSet().add(key5, 张三, 李四, 王五); System.out.println(粉丝数 redisTemplate.opsForSet().size(key5));zset String key5 user:0001:friends; redisTemplate.opsForZSet().add(key5,张三, System.currentTimeMillis()); redisTemplate.opsForZSet().add(key5,李四, System.currentTimeMillis()); redisTemplate.opsForZSet().add(key5,王五, System.currentTimeMillis());SetString friendList redisTemplate.opsForZSet().reverseRange(key5, 0L, -1L); System.out.println(好友列表 friendList );list String key6 order:queue; MapString, Object order1 new HashMap(); order1.put(orderId, 1001); order1.put(userId, 2001); order1.put(status, 已完成); order1.put(amount, 500.75); order1.put(creationTime, 2024-03-07T09:30:00); order1.put(lastUpdateTime, 2024-03-07T10:45:00); order1.put(paymentMethod, 在线支付); order1.put(shippingMethod, 自提); order1.put(remarks, 尽快处理);MapString, Object order2 new HashMap(); order2.put(orderId, 1002); order2.put(userId, 2002); order2.put(status, 待处理); order2.put(amount, 280.99); order2.put(creationTime, 2024-03-07T11:00:00); order2.put(lastUpdateTime, 2024-03-07T11:00:00); order2.put(paymentMethod, 货到付款); order2.put(shippingMethod, 快递配送); order2.put(remarks, 注意保鲜); // A程序接收订单请求并将其加入队列 redisTemplate.opsForList().leftPush(key6,order1); redisTemplate.opsForList().leftPush(key6,order2); // B程序从订单队列中获取订单数据并处理 System.out.println(处理订单 redisTemplate.opsForList().rightPop(key6));4. RedisHash注解 RedisHash用于将Java对象映射到Redis的Hash数据结构中使得对象的存储和检索变得更加简单 创建实体类 Data RedisHash public class User {Idprivate Integer id;private String name;private Integer age;private String phone; }创建接口注意需要继承CrudRepository这样改接口就具备对应实体的redis中的增删改查操作 public interface UserRedisMapper extends CrudRepositoryUser,Integer { }操作 Autowired private UserRedisMapper userRedisMapper;Test public void testRedisHash(){User user new User();user.setId(100);user.setName(张三疯);user.setAge(18);user.setPhone(19988889999);// 保存userRedisMapper.save(user);// 读取User redisUser userRedisMapper.findById(100).get();System.out.println(redisUser: redisUser);// 更新user.setPhone(18899998888);userRedisMapper.save(user);// 删除//userRedisMapper.deleteById(100);// 判断存在boolean exists userRedisMapper.existsById(100);System.out.println(exists: exists); }5. 缓存管理注解 Spring的缓存管理功能旨在帮助开发人员轻松地在应用程序中使用缓存以提高性能和响应速度。它提供了一套注解和配置使得开发人员可以在方法级别上进行缓存控制并且支持多种缓存存储提供程序如Caffeine、EhCache、Redis等。 注解说明Cacheable用于声明一个方法的返回值应该被缓存起来以便下次相同的参数调用时可以直接返回缓存中的值而不需要执行方法体。CachePut用于更新缓存中的数据它会在方法执行后将返回值更新到缓存中CacheEvict用于清除缓存中的数据它可以根据条件清除指定的缓存项 准备表 CREATE TABLE product (id INT AUTO_INCREMENT PRIMARY KEY,name VARCHAR(255) NOT NULL,description TEXT,price DECIMAL(10, 2) NOT NULL,stock INT NOT NULL );INSERT INTO product (name, description, price, stock) VALUES (iPhone 15, 最新的iPhone型号, 8999.99, 100), (三星Galaxy S24, 旗舰安卓手机, 7899.99, 150), (MacBook Pro, 专业人士的强大笔记本电脑, 15999.99, 50), (iPad Air, 性能强劲的便携式平板电脑, 5599.99, 200), (索尼PlayStation 6, 下一代游戏机, 4499.99, 75);实体类 Data TableName public class Product {TableIdprivate Integer id;private String name;private String description;private Double price;private Integer stock; }Mapper public interface ProductMapper extends BaseMapperProduct { }启动类添加注解 MapperScan(“com.qqcn.*.mapper”) Service public interface ProductService {// 根据商品ID获取商品信息Product getProductById(Integer id);// 添加新商品Product addProduct(Product product);// 更新商品信息Product updateProduct(Product product);// 根据商品ID删除商品Integer deleteProductById(Integer id); }Service public class ProductServiceImpl implements ProductService {Resourceprivate ProductMapper productMapper;Cacheable(value product, key product: #id)Overridepublic Product getProductById(Integer id) {return productMapper.selectById(id);}CachePut(value product, key product: #product.id)Overridepublic Product addProduct(Product product) {productMapper.insert(product);return product;}CachePut(value product, key product: #product.id)Overridepublic Product updateProduct(Product product) {productMapper.updateById(product);return product;}CacheEvict(value product, key product: #id)Overridepublic Integer deleteProductById(Integer id) {productMapper.deleteById(id);return id;} }测试 Autowired private ProductService productService;Test public void testQuery(){Product product productService.getProductById(1);System.out.println(product); }Test public void testUpdate(){Product product productService.getProductById(1);System.out.println(product);product.setName(苹果19);productService.updateProduct(product);System.out.println(productService.getProductById(1)); }Test public void testDelete(){productService.deleteProductById(1); }结束语 以上就是本期分享内容内容并不全面旨在抛砖引玉最重要的还是需要你到项目中在合适的应用场景中去使用redis发挥出redis的优势和价值。
http://www.zqtcl.cn/news/909091/

相关文章:

  • 合肥 网站设计大学生创新创业大赛项目计划书
  • 北京网站主题制作做婚恋网站怎么样
  • 卖设计图的网站低代码开发平台公司
  • 建设银行顺德分行网站中国建筑装饰公司排名
  • 百度网站提交入口百度国内打开google网页的方法
  • 上海高端品牌网站制作wordpress返利主题
  • 网站建设会遇到哪些难题安阳网站如何做优化
  • 哈德网站建设使用wordpress创建企业官网
  • 新品销售网站建设建设银行网站怎么登陆密码
  • 外贸营销主题怎么写seo薪资
  • 手机音乐网站源码关键路径
  • 网站制作哪些官方静态网站模板
  • 网站开发seo网站排名优化服务
  • 佛山营销网站开发帝国cms网站公告怎么做
  • 2_试列出网站开发建设的步骤在哪里进行网站域名的实名认证
  • 个人网站做博客还是做论坛网络服务推广
  • 遵义网站制作小程序辛集做网站
  • 做逆战网站的名字吗网站维护员
  • 浏览器收录网站重庆网上房地产网
  • 门户网站建设哪专业wordpress爆破密码字典
  • 响应式网站的制作app开发公司加盟
  • 建设部安全事故通报网站sem是什么分析方法
  • 北京网站制作出名 乐云践新手机建站专家
  • 做机械有什么兼职网站安徽网站优化怎么做
  • 网站建设规划semir是什么品牌
  • 网站建设开发环境自学服装设计下载
  • 南京网站建设公司哪家好设计教程网站有哪些
  • 网页和网站做哪个好用吗陕西陕煤建设集团有限公司网站
  • 网站建设系统优势设计欣赏
  • 河北省网站建设东莞网站开发哪家好