在現(xiàn)代網(wǎng)絡(luò)服務(wù)中,session(會(huì)話)不得不說(shuō)是非常重要也是一定要實(shí)現(xiàn)的概念,因此在web后臺(tái)開(kāi)發(fā)中,對(duì)session的管理和維護(hù)是必須要實(shí)現(xiàn)的組件。這篇文章主要是介紹如何在Spring Boot項(xiàng)目中加入redis來(lái)實(shí)現(xiàn)對(duì)session的存儲(chǔ)與管理。
成都網(wǎng)站制作,成都營(yíng)銷型網(wǎng)站-成都創(chuàng)新互聯(lián)科技公司專注營(yíng)銷型網(wǎng)站建設(shè)及定制型網(wǎng)站開(kāi)發(fā)。致力為您建設(shè)最有價(jià)值的網(wǎng)站,服務(wù)熱線:028-86922220。
1. 利用Spring Initializr來(lái)新建一個(gè)spring boot項(xiàng)目
2. 在pom.xml中添加redis和session的相關(guān)依賴。項(xiàng)目生成的時(shí)候雖然也會(huì)自動(dòng)生成父依賴,但是1.5.3版本的spring boot的redis相關(guān)依賴有可能不能夠正常工作,筆者自行在maven repository找到了比較穩(wěn)定的版本如下方代碼所示
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-data-redis 1.5.2.RELEASE org.springframework.session spring-session-data-redis 1.3.0.RELEASE
3. 在application.properties中添加redis數(shù)據(jù)庫(kù)的相關(guān)配置。這里為了演示使用方法只添加了相對(duì)簡(jiǎn)單的配置,即設(shè)置了session存儲(chǔ)的數(shù)據(jù)庫(kù)類型、使用的數(shù)據(jù)庫(kù)號(hào)、數(shù)據(jù)庫(kù)地址和端口號(hào)。實(shí)戰(zhàn)中還會(huì)對(duì)使用非默認(rèn)數(shù)據(jù)庫(kù)、數(shù)據(jù)庫(kù)大小、數(shù)據(jù)庫(kù)最大連接數(shù)、生存時(shí)長(zhǎng)、是否寫回磁盤等許多參數(shù)進(jìn)行配置
# Redis配置 spring.session.store-type=redis spring.redis.database=0 spring.redis.host=localhost spring.redis.port=6379
4. 編寫一個(gè)測(cè)試的controller來(lái)驗(yàn)證是否能夠正確地讀寫session。這里的controller中,我判斷了當(dāng)前獲取的session是否是新生成的。如果是,則輸出成功創(chuàng)建一個(gè)session對(duì)象,并返回session的id,然后在session中添加一個(gè)字段。如果session不是新生成的,即是已經(jīng)存在的session,則輸出session是已經(jīng)存在的并返回session的id,然后再輸出session中初次創(chuàng)建session保存的key所對(duì)應(yīng)的value
@SpringBootApplication @EnableRedisHttpSession @RestController public class DemoApplication { private Logger logger = LoggerFactory.getLogger(this.getClass()); public static void main(String[] args) { SpringApplication app = new SpringApplication(DemoApplication.class); app.setWebEnvironment(true); app.run(args); } @GetMapping("/hello") public ResponseEntity<?> hello(HttpSession session) { if (session.isNew()) { logger.info("Successfully creates a session ,the id of session :" + session.getId()); session.setAttribute("key", "hello"); } else { logger.info("session already exists in the server, the id of session :"+ session.getId()); logger.info(session.getAttribute("key").toString()); } return new ResponseEntity<>("Hello World", HttpStatus.OK); } }
5. 測(cè)試代碼
首先運(yùn)行Redis客戶端
redis-cli
查看當(dāng)前數(shù)據(jù)庫(kù)內(nèi)容
127.0.0.1:6379> keys * (empty list or set)
運(yùn)行spring boot項(xiàng)目
第一次瀏覽器訪問(wèn)localhost:8080/hello,如下圖所示則成功運(yùn)行
查看log可以看到
2017-06-12 00:26:12.601 INFO 9580 — [nio-8080-exec-1] ication$$EnhancerBySpringCGLIB$$de942542 : Successfully creates a session ,the id of session :4368a535-9bfa-406b-975c-e58c2bca1e75
再次訪問(wèn)localhost:8080/hello時(shí),查看log可以看到能夠正確地從redis中取出存放在session中的某個(gè)key對(duì)應(yīng)的值
2017-06-12 00:30:43.533 INFO 9580 — [nio-8080-exec-5] ication$$EnhancerBySpringCGLIB$$de942542 : session already exists in the server, the id of session :4368a535-9bfa-406b-975c-e58c2bca1e75 2017-06-12 00:30:43.533 INFO 9580 — [nio-8080-exec-5] ication$$EnhancerBySpringCGLIB$$de942542 : hello
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。