<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Redis是一個開源的key-value儲存系統。
Redis的五種基本型別:String(字串),list(連結串列),set(集合),zset(有序集合),hash,stream(Redis5.0後的新資料結構)
這些資料型別都支援push/pop、add/remove及取交集並集和差集及更豐富的操作,而且這些操作都是原子性的。
Redis的應用場景為配合關係型資料庫做快取記憶體,降低資料庫IO
需要注意的是,Redis是單執行緒的,如果一次批次處理命令過多,會造成Redis阻塞或網路擁塞(傳輸資料量大)
pom.xml
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent> <groupId>org.example</groupId> <artifactId>seckill</artifactId> <version>1.0-SNAPSHOT</version> <properties> <java.version>1.8</java.version> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>2.2.1.RELEASE</version> <scope>test</scope> </dependency> <!-- redis --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!-- spring2.X整合redis所需common-pool2--> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-pool2</artifactId> <version>2.6.0</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.24</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</fork> </configuration> </plugin> </plugins> </build> </project>
application.properties.xml
#Redis伺服器地址 spring.redis.host=192.168.1.2 #Redis伺服器連線埠 spring.redis.port=6379 #Redis資料庫索引(預設為0) spring.redis.database=0 #連線超時時間(毫秒) spring.redis.timeout=1800000 #連線池最大連線數(使用負值表示沒有限制) spring.redis.lettuce.pool.max-active=20 #最大阻塞等待時間(負數表示沒限制) spring.redis.lettuce.pool.max-wait=-1 #連線池中的最大空閒連線 spring.redis.lettuce.pool.max-idle=5 #連線池中的最小空閒連線 spring.redis.lettuce.pool.min-idle=0 # 關閉超時時間 #pring.redis.lettuce.shutdown-timeout=100 #設定spring啟動埠號 server.port=8080
前端介面
seckillpage.html
<!DOCTYPE html> <html lang="en" xmlns:v-on="http://www.w3.org/1999/xhtml" xmlns:v-bind="http://www.w3.org/1999/xhtml"> <head> <meta charset="UTF-8"> <title>redis秒殺</title> </head> <body> <!-- 開發環境版本,包含了有幫助的命令列警告 --> <script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script> <!-- 官網提供的 axios 線上地址 --> <script src="https://cdn.bootcdn.net/ajax/libs/axios/0.20.0-0/axios.min.js"></script> <div id="app"> <h1>商品1元秒殺</h1> <!-- 左箭頭 --> <input type="button" value="<" v-on:click="prov" v-show="this.index>-1"/> <img v-bind:src="imgArr[index]" width="200px" /> <!-- 右箭頭 --> <input type="button" value=">" v-on:click="next" v-show="this.index<2"/><br> <input type="button" v-on:click="seckill" value="秒 殺"/> </div> <script> var app = new Vue({ el: "#app", data: { productId: "01234", imgArr:[ "/image/phone1.png", "/image/phone2.png", "/image/phone3.png", ], index:0 }, methods: { seckill: function () { let param = new URLSearchParams() param.append('productId', this.productId) param.append('index', this.index) axios({ method: 'post', url: 'http://192.168.1.6:8080/index/doSeckill', data: param }).then(function (response) { if (response.data == true) { alert("秒殺成功"); } else { alert("搶光了"); } }, function(error){ alert("發生錯誤"); }); }, prov:function(){ this.index--; }, next:function(){ this.index++; } } }); </script> </body> </html>
相關設定類
Redis設定類
RedisConfig.java
package com.springboot_redis_seckill.config; import com.fasterxml.jackson.annotation.JsonAutoDetect; import com.fasterxml.jackson.annotation.PropertyAccessor; import com.fasterxml.jackson.databind.ObjectMapper; import org.springframework.cache.CacheManager; import org.springframework.cache.annotation.CachingConfigurerSupport; import org.springframework.cache.annotation.EnableCaching; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.data.redis.cache.RedisCacheConfiguration; import org.springframework.data.redis.cache.RedisCacheManager; import org.springframework.data.redis.connection.RedisConnectionFactory; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.data.redis.serializer.Jackson2JsonRedisSerializer; import org.springframework.data.redis.serializer.RedisSerializationContext; import org.springframework.data.redis.serializer.RedisSerializer; import org.springframework.data.redis.serializer.StringRedisSerializer; import java.time.Duration; /** * @author WuL2 * @create 2021-05-27 14:26 * @desc **/ @EnableCaching @Configuration public class RedisConfig extends CachingConfigurerSupport { @Bean public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) { RedisTemplate<String, Object> template = new RedisTemplate<>(); RedisSerializer<String> redisSerializer = new StringRedisSerializer(); Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class); ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); jackson2JsonRedisSerializer.setObjectMapper(om); template.setConnectionFactory(factory); template.setKeySerializer(redisSerializer); //key序列化方式 template.setValueSerializer(jackson2JsonRedisSerializer); //value序列化 template.setHashValueSerializer(jackson2JsonRedisSerializer); //value hashmap序列化 return template; } @Bean(name = "cacheManager") public CacheManager cacheManager(RedisConnectionFactory factory) { RedisSerializer<String> redisSerializer = new StringRedisSerializer(); Jackson2JsonRedisSerializer jackson2JsonRedisSerializer = new Jackson2JsonRedisSerializer(Object.class); //解決查詢快取轉換異常的問題 ObjectMapper om = new ObjectMapper(); om.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY); om.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL); jackson2JsonRedisSerializer.setObjectMapper(om); // 設定序列化(解決亂碼的問題),過期時間600秒 RedisCacheConfiguration config = RedisCacheConfiguration.defaultCacheConfig() .entryTtl(Duration.ofSeconds(600)) .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(redisSerializer)) .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(jackson2JsonRedisSerializer)) .disableCachingNullValues(); RedisCacheManager cacheManager = RedisCacheManager.builder(factory) .cacheDefaults(config) .build(); return cacheManager; } }
設定Vue獲取後端介面資料時出現的跨域請求問題。
CorsConfig.java
package com.springboot_redis_seckill.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.web.cors.CorsConfiguration; import org.springframework.web.cors.UrlBasedCorsConfigurationSource; import org.springframework.web.filter.CorsFilter; /** * @author: wu linchun * @time: 2021/5/28 22:22 * @description: 解決跨域問題(介面是http,而axios一般請求的是https。從https到http是跨域,因此要設定跨域請求) */ @Configuration public class CorsConfig { private CorsConfiguration buildConfig() { CorsConfiguration corsConfiguration = new CorsConfiguration(); corsConfiguration.addAllowedOrigin("*"); //允許任何域名 corsConfiguration.addAllowedHeader("*"); //允許任何頭 corsConfiguration.addAllowedMethod("*"); //允許任何方法 return corsConfiguration; } @Bean public CorsFilter corsFilter() { UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource(); source.registerCorsConfiguration("/**", buildConfig()); //註冊 return new CorsFilter(source); } }
服務層
SecKillService.java
package com.springboot_redis_seckill.service; public interface SecKillService { public boolean doSecKill(String uid,String productId); }
SecKillServiceImpl.java
package com.springboot_redis_seckill.service.impl; import com.springboot_redis_seckill.service.SecKillService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.data.redis.core.RedisTemplate; import org.springframework.stereotype.Service; /** * @author WuL2 * @create 2021-05-27 14:53 * @desc **/ @Service public class SecKillServiceImpl implements SecKillService { @Autowired @Qualifier("redisTemplate") private RedisTemplate redisTemplate; @Override public synchronized boolean doSecKill(String uid, String productId) { //1、uid和productId非空判斷 if (uid == null || productId == null) { return false; } //2、拼接key String kcKey = "sk:" + productId + ":qt"; //庫存 String userKey = "sk:" + productId + ":user"; //秒殺成功的使用者 //3、獲取庫存 String kc = String.valueOf(redisTemplate.opsForValue().get(kcKey)) ; if (kc == null) { System.out.println("秒殺還沒有開始,請等待"); return false; } //4、判斷使用者是否已經秒殺成功過了 if (redisTemplate.opsForSet().isMember(userKey, uid)) { System.out.println("已秒殺成功,不能重複秒殺"); return false; } //5、如果庫存數量小於1,秒殺結束 if (Integer.parseInt(kc) <=0) { System.out.println("秒殺結束"); return false; } //6、秒殺過程 redisTemplate.opsForValue().decrement(kcKey); //庫存數量減1 redisTemplate.opsForSet().add(userKey, uid); System.out.println("秒殺成功。。。"); return true; } }
控制層
package com.springboot_redis_seckill.controller; import com.alibaba.fastjson.JSONObject; import com.springboot_redis_seckill.service.SecKillService; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import java.io.IOException; import java.io.PrintWriter; import java.util.Random; /** * @author WuL2 * @create 2021-05-27 14:28 * @desc **/ @Controller @RequestMapping("/index") public class MyController { @Autowired @Qualifier("secKillServiceImpl") private SecKillService secKillService; @RequestMapping(value = {"/seckillpage"}, method = RequestMethod.GET) public String seckillpage() { return "/html/seckillpage.html"; } @RequestMapping(value = {"/doSeckill"}, method = RequestMethod.POST) @ResponseBody //自動返回json格式的資料 public Object doSeckill(HttpServletRequest request, HttpServletResponse response) { System.out.println("doSeckill"); String productId = request.getParameter("productId"); String index = request.getParameter("index"); System.out.println(productId+index); //拼接成為商品ID int id = new Random().nextInt(50000); //使用亂數生成使用者ID String uid = String.valueOf(id) + " "; boolean flag = secKillService.doSecKill(uid, productId+index); System.out.println(flag); return flag; } }
啟動類
RunApplication.java
package com.springboot_redis_seckill; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; /** * @author WuL2 * @create 2021-05-27 14:32 * @desc **/ @SpringBootApplication public class RunApplication { public static void main(String[] args) { SpringApplication.run(RunApplication.class, args); } }
因為一共有三件商品要秒殺,所以在redis裡面設定三個商品的庫存數量。這裡數量都設定為10。
127.0.0.1:6379> set sk:012340:qt 10 OK 127.0.0.1:6379> set sk:012341:qt 10 OK 127.0.0.1:6379> set sk:012342:qt 10 OK
要確保redis能夠被存取,要確保關閉linux的防火牆,以及關閉redis的保護模式。
vim redis.conf --開啟redis設定 service iptables stop --關閉防火牆 //關閉redis保護模式 redis-cli --進入redis使用者端 config set protected-mode "no" --設定裡面關閉redis保護模式(只是進入redis.conf把protected-mode變為no是不行的,還要加一句config set protected-mode "no"
啟動springboot專案
秒殺成功後,該商品在redis中的數量就減1。
當數量減為0時,則提示“搶光了”。
如果是centOS 6版本的linux都是預設按照了ab工具的。
如果沒有安裝ab工具,可在linux終端用命令聯網下載安裝。
yum install httpd-tools
安裝完成後,就可以使用ab工具進行並行測試了。
在linux終端輸入如下命令:
ab -n 2000 -c 200 -p '/root/Desktop/post.txt' -T 'application/x-www-form-urlencoded' 'http://192.168.1.6:8080/index/doSeckill/'
012341這個商品庫存變為0了
為了防止出現“超買”的現象,需要讓操作redis的方法是執行緒安全的(即在方法上加上一個“悲觀鎖”synchronized)。
如果不加synchronized就會出現“超買”現象,即redis庫存會出現負數
之所以產生這種現象是由於並行導致多個使用者同時呼叫了doSecKill()方法,多個使用者同時修改了redis中的sk:012342:qt的值,但暫時都沒有提交存入到redis中去。等到後來一起提交,導致了sk:012342:qt的值被修改了多次,因此會出現負數。
因此在doSecKill()方法加上悲觀鎖,使用者呼叫該方法就對該方法加鎖,修改了sk:012342:qt的值後並提交存入redis中之後,才會釋放鎖。其他使用者才能得到鎖並操作該方法。
redis作為一種Nosql的非關係型資料庫,因為其單範例,簡單高效的特性通常會被作為其他關係型資料庫的快取記憶體。尤其是在秒殺這樣的高並行操作。先將要秒殺的商品資訊從資料庫讀入到redis中,秒殺的過程實際上是在與redis進行互動。等秒殺完成後再將秒殺的結果存入資料庫。可以有效降低降低資料庫IO,防止資料庫宕機。
https://www.bilibili.com/video/BV1Rv41177Af?p=27
https://www.cnblogs.com/taiyonghai/p/5810150.html
到此這篇關於Springboot+redis+Vue實現秒殺的專案實踐的文章就介紹到這了,更多相關Springboot+redis+Vue 秒殺內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45