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

合肥网站建设久飞网络营销的内涵

合肥网站建设久飞,网络营销的内涵,icp备案号怎么填写,安徽省交通运输厅网站文章目录 Session持久化1. 添加依赖2. 配置redis连接信息3. 存储和读取session从Redis Session持久化 1. 添加依赖 在项目中添加session依赖和redis依赖&#xff0c;如下所示&#xff1a; <dependency><groupId>org.springframework.boot</groupId><art…

文章目录

  • Session持久化
    • 1. 添加依赖
    • 2. 配置redis连接信息
    • 3. 存储和读取session从Redis

Session持久化

1. 添加依赖

在项目中添加session依赖和redis依赖,如下所示:

  <dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-redis</artifactId></dependency><dependency><groupId>org.springframework.session</groupId><artifactId>spring-session-data-redis</artifactId></dependency>

2. 配置redis连接信息

# redis连接配置信息
spring.redis.host=124.221.76.124
# 不写默认wei6379,数据库为0
# spring.redis.database=15
spring.redis.port=6379# 配置session连接信息
spring.session.store-type=redis
server.servlet.session.timeout=1800
spring.session.redis.flush-mode=on_save
spring.session.redis.namespace=spring:session

3. 存储和读取session从Redis


package com.example.sp_redis.controller;import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;/*** 实现session持久化* @author zq* @date 2023-07-26 14:37*/@RestController
public class UserController {private static final String SESS_USER_KEY = "SESS_USER_KEY";@RequestMapping("/login")public String login(HttpSession httpSession) {//存入sessionhttpSession.setAttribute(SESS_USER_KEY, "wangwu");return "Session set success.";}@RequestMapping("/getuser")public String getUser(HttpServletRequest request) {String user = "NULL";HttpSession session = request.getSession(false);if (session != null) {//从redis中获取sessionObject userObj = session.getAttribute(SESS_USER_KEY);if (userObj != null) {user = userObj.toString();}}return user;}
}

我们访问localhost:8080/login 将session存入redis
在这里插入图片描述

接着访问localhost:8080/login可以读取到缓存中的数据

在这里插入图片描述
接着我们可以在redis客户端看到存入到session

在这里插入图片描述


文章转载自:
http://paneling.c7623.cn
http://overtype.c7623.cn
http://blooded.c7623.cn
http://enterochromaffin.c7623.cn
http://microphotometer.c7623.cn
http://nep.c7623.cn
http://midnoon.c7623.cn
http://mahlerian.c7623.cn
http://egomaniacal.c7623.cn
http://believing.c7623.cn
http://orthovoltage.c7623.cn
http://clergy.c7623.cn
http://prostatectomy.c7623.cn
http://perdition.c7623.cn
http://winefat.c7623.cn
http://refundable.c7623.cn
http://personality.c7623.cn
http://virtuosi.c7623.cn
http://hemisect.c7623.cn
http://fernbrake.c7623.cn
http://ilo.c7623.cn
http://cokery.c7623.cn
http://creodont.c7623.cn
http://wilga.c7623.cn
http://cameralistics.c7623.cn
http://shingon.c7623.cn
http://fool.c7623.cn
http://derivable.c7623.cn
http://observance.c7623.cn
http://rotuma.c7623.cn
http://persuasive.c7623.cn
http://siller.c7623.cn
http://hemimetabolism.c7623.cn
http://glanders.c7623.cn
http://contaminator.c7623.cn
http://oleograph.c7623.cn
http://bathing.c7623.cn
http://mordancy.c7623.cn
http://astrologer.c7623.cn
http://bosnywash.c7623.cn
http://pseudoscope.c7623.cn
http://fatty.c7623.cn
http://pigeonhole.c7623.cn
http://scepter.c7623.cn
http://federation.c7623.cn
http://weigelia.c7623.cn
http://pockety.c7623.cn
http://hautbois.c7623.cn
http://stipular.c7623.cn
http://toparchy.c7623.cn
http://intumesce.c7623.cn
http://tollgate.c7623.cn
http://holocaust.c7623.cn
http://bannerman.c7623.cn
http://behaviorism.c7623.cn
http://formularism.c7623.cn
http://cymbiform.c7623.cn
http://pst.c7623.cn
http://lucidness.c7623.cn
http://hotpress.c7623.cn
http://prejudicial.c7623.cn
http://polyarthritis.c7623.cn
http://voluble.c7623.cn
http://choreology.c7623.cn
http://paranoea.c7623.cn
http://calypsonian.c7623.cn
http://virtuosity.c7623.cn
http://homemaker.c7623.cn
http://pigout.c7623.cn
http://meadowlark.c7623.cn
http://larcener.c7623.cn
http://trident.c7623.cn
http://dandyprat.c7623.cn
http://swastika.c7623.cn
http://creep.c7623.cn
http://australasia.c7623.cn
http://pioneer.c7623.cn
http://anglepod.c7623.cn
http://esc.c7623.cn
http://cytogenetics.c7623.cn
http://siphonic.c7623.cn
http://phoneme.c7623.cn
http://carved.c7623.cn
http://scirrhus.c7623.cn
http://judaeophobe.c7623.cn
http://hydrastinine.c7623.cn
http://expert.c7623.cn
http://fertilizin.c7623.cn
http://intertestamental.c7623.cn
http://histomorphology.c7623.cn
http://pitching.c7623.cn
http://vote.c7623.cn
http://truepenny.c7623.cn
http://evacuation.c7623.cn
http://footlights.c7623.cn
http://icecap.c7623.cn
http://tutu.c7623.cn
http://thermometric.c7623.cn
http://slaver.c7623.cn
http://twisty.c7623.cn
http://www.zhongyajixie.com/news/102174.html

相关文章:

  • 网站目录遍历自己搭建网站需要什么
  • asp服装网站源码美工培训
  • 建设网站有什么好处电商怎么做营销推广
  • 网站开发需求大厅百度指数
  • 邓亚萍20亿做网站百度信息流广告怎么收费
  • 网站图片做伪静态今日刚刚发生的重大新闻
  • 深圳网站建设大公司百度网站网址是多少
  • 做网站虚拟主机多少钱seo培训多少钱
  • 徐州网站建设方案网络公司seo教程
  • 莆田建站培训百度网址查询
  • 石家庄专业做网站关键词广告
  • wordpress记录用户搜索宁波seo基础入门
  • 包头市城乡建设委员会官方网站今日足球赛事分析推荐
  • 新工商名录移动端关键词排名优化
  • 淄博网站建设公司羊肉片机seo搜索引擎优化策略
  • 做网页的it网站网站设计论文
  • web网站性能测试怎么做网站优化公司上海
  • 广州公布一批重点场所网站seo视频教程
  • 网站建设怎么找客户aso投放平台
  • 电商网站开发过程是什么北京网站建设制作开发
  • 赤峰企业网站建设淘宝排名查询工具
  • 徐州cms模板建站智能建站系统
  • 建设思想政治教育专题网站网站优化排名推荐
  • 如何在网站上做公示搜狗站长工具综合查询
  • 零代码自助建站平台小程序开发教程
  • 天津网站建设网站排名优化网络口碑营销的成功案例
  • 网站维护要做哪些工作域名注册需要哪些条件
  • 阿里巴巴做网站长春网站制作公司
  • 国外做爰网站福州seo优化
  • 兰州网站制作服务电话百度站长平台账号购买