- 浏览: 1590025 次
- 来自: 上海
文章分类
- 全部博客 (374)
- Java (101)
- Struts (54)
- Oracle (30)
- JavaScript (16)
- Spring (27)
- Hibernate (16)
- MyEclipse (3)
- JSF (1)
- FreeMarker (2)
- SiteMesh (2)
- JfreeChart (2)
- Ibatis (2)
- JSP (12)
- MyBatis (4)
- SWFupload (1)
- EJB (4)
- Jboss (4)
- WebService (2)
- Linux (16)
- Android (2)
- XML (6)
- Java 网络编程 (13)
- AXIS2 (1)
- FTP (1)
- Jswing (1)
- Socket (3)
- 杂文选集 (6)
- solr (2)
- PS (1)
- Tomcat (7)
- JDBC (9)
- Highcharts (1)
- maven (1)
- Nodejs (0)
- navicat (2)
- Exception (5)
- eclipse (3)
- jQuery (1)
- springMVC (4)
- MySQL (11)
- SVN (1)
- Sql Server (1)
- zookeeper (1)
- JVM (1)
- Groovy (2)
- Git (1)
- Nginx (1)
- DynamicReport (1)
- IDEA (2)
- JasperReports (1)
- Postgresql (2)
- Mac (1)
- gradle (1)
- 数据结构算法 (1)
最新评论
-
hpu145:
引用引用
java 千分位的添加和去除 -
被遗忘的下路:
少了个junit-4.8.2的包
SSH2整合完整案例(四十三) -
白天看黑夜:
java过滤emoji字符处理,希望能帮到你http://ww ...
emoji 表情图片解决方法 -
caipeiming:
这个挺好JavaScript实现input输入框控件只允许输入 ...
js 控制文本框只能输入中文、英文、数字等 -
双子树:
东西太好啦受教啊
Struts2 JSP中将list,set ,Map传递到Action然后<s:iterator>遍历(三十五)
spring-session 配置
依赖
web.xml 中配置
redis 配置 spring-session bean
遇到的问题
1:
web.xml 中配置 context-param 必须放在filter 前面
2 context-param 必须包含 redis spring-session bean 的配置
3 nginx 做轮询的时候 session 丢失了 造成 sessionid 每次都重新创建了
所以要配置 defaultCookieSerializer 这个bean
指定 domain 和 cookie path
关于这个问题 其实可以配置nginx 的时候 指定cook-path
http://blog.csdn.net/eonianglutton/article/details/54139586
http://www.cnblogs.com/zangdalei/p/6021352.html
依赖
gradle compile "redis.clients:jedis:2.9.0" //spring-session compile('org.springframework.data:spring-data-redis:1.8.3.RELEASE') compile('org.springframework.session:spring-session:1.2.2.RELEASE')
web.xml 中配置
<context-param> <param-name>contextConfigLocation</param-name> <param-value> classpath:spring-context.xml </param-value> </context-param> <!--spring-session--> <filter> <filter-name>springSessionRepositoryFilter</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> </filter> <filter-mapping> <filter-name>springSessionRepositoryFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
redis 配置 spring-session bean
<bean id="retryTemplate" class="org.springframework.retry.support.RetryTemplate"> <property name="retryPolicy"> <bean class="org.springframework.retry.policy.TimeoutRetryPolicy"> <property name="timeout" value="50"/> <!--50毫秒后重试--> </bean> </property> </bean> <!-- jedis 连接池配置 --> <bean id="jedisSessionPoolConfig" class="redis.clients.jedis.JedisPoolConfig"> <property name="maxTotal" value="300"/> <property name="maxIdle" value="5"/> <property name="minIdle" value="1"/> <property name="maxWaitMillis" value="1000"></property> <property name="testOnBorrow" value="true"/> <!-- 调用return 一个对象方法时,是否检查其有效性 --> <property name="testOnReturn" value="true"/> </bean> <bean id="redisSentConfSystemServer" class="org.springframework.data.redis.connection.RedisSentinelConfiguration"> <property name="master"> <bean class="org.springframework.data.redis.connection.RedisNode"> <property name="name" value="${redis.sentinel.master.clound_data_server}"></property> </bean> </property> <property name="sentinels"> <set> <bean class="org.springframework.data.redis.connection.RedisNode"> <constructor-arg index="0" value="${redis.sentinel1.address.clound_data_server}"/> <constructor-arg index="1" value="${redis.sentinel1.port.clound_data_server}"/> </bean> <bean class="org.springframework.data.redis.connection.RedisNode"> <constructor-arg index="0" value="${redis.sentinel2.address.clound_data_server}"/> <constructor-arg index="1" value="${redis.sentinel2.port.clound_data_server}"/> </bean> <bean class="org.springframework.data.redis.connection.RedisNode"> <constructor-arg index="0" value="${redis.sentinel3.address.clound_data_server}"/> <constructor-arg index="1" value="${redis.sentinel3.port.clound_data_server}"/> </bean> </set> </property> </bean> <bean id="jedisConnFactSystemServer01" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory"> <constructor-arg ref="redisSentConfSystemServer"/> <property name="usePool" value="true"/> <property name="timeout" value="10000"/> <property name="database" value="${redis.db.clound_data_server}"/> <property name="password" value="${redis.password.clound_data_server}"/> <property name="poolConfig" ref="jedisSessionPoolConfig"/> </bean> <bean id="redisSessionTemplate01" class="org.springframework.data.redis.core.StringRedisTemplate"> <property name="connectionFactory" ref="jedisConnFactSystemServer01"/> <property name="valueSerializer"> <bean class="org.springframework.data.redis.serializer.StringRedisSerializer"/> </property> </bean> <bean id="cacheUtil01" class="cn.mwee.utils.cache.RedisTemplateUtil"> <property name="stringRedisTemplate" ref="redisSessionTemplate01"/> <property name="retryTemplate" ref="retryTemplate"/> </bean> <!--redis config-end--> <!--spring-session--> <bean id="redisHttpSessionConfiguration" class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration"> <property name="maxInactiveIntervalInSeconds" value="1800" /> <property name="cookieSerializer" ref="defaultCookieSerializer"/> </bean> <bean id="defaultCookieSerializer" class="org.springframework.session.web.http.DefaultCookieSerializer"> <property name="domainName" value="${wpos.report.domainName}"/> <!--<property name="cookieName" value="JSESSIONID"/>--> <property name="cookiePath" value="${wpos.report.cookiePath}"></property> <!-- <property name="domainNamePattern" value="^.+?\.(\w+\.[a-z]+)$"></property>--> </bean>
遇到的问题
1:
web.xml 中配置 context-param 必须放在filter 前面
2 context-param 必须包含 redis spring-session bean 的配置
3 nginx 做轮询的时候 session 丢失了 造成 sessionid 每次都重新创建了
所以要配置 defaultCookieSerializer 这个bean
指定 domain 和 cookie path
关于这个问题 其实可以配置nginx 的时候 指定cook-path
解决nginx使用proxy_pass反向代理时,session丢失的问题 这2天在测试Nginx作为反向代理到Tomcat应用时,session丢失的问题。经过一系列查看官方文档和测试,发现如下: 1、如果只是host、端口转换,则session不会丢失。例如: location /testwx { proxy_pass http://127.0.0.1:8080/testwx; } 通过浏览器访问http://127.0.0.1/testwx时,浏览器的cookie内有jsessionid。再次访问时,浏览器会发送当前的cookie。 2、如果路径也变化了,则需要设置cookie的路径转换,nginx.conf的配置如下 location /testwx { proxy_pass http://127.0.0.1:8080/wx; } 通过浏览器访问http://127.0.0.1/testwx时,浏览器的cookie内没有jsessionid。再次访问时,后台当然无法获取到cookie了。 详细看了文档:http://nginx.org/en/docs/http/ngx_http_proxy_module.html?&_ga=1.161910972.1696054694.1422417685#proxy_cookie_path 加上路径转换:proxy_cookie_path /wx /testwx;则可以将wx的cookie输出到testwx上,Tomcat的session正常了。正确的配置是: location /testwx { proxy_pass http://127.0.0.1:8080/wx; proxy_cookie_path /wx /testwx;#这里的路径要注意对应关系 }
http://blog.csdn.net/eonianglutton/article/details/54139586
http://www.cnblogs.com/zangdalei/p/6021352.html
发表评论
-
Spring AspectJ Aop Annotation
2017-03-29 17:08 709import org.aspectj.lang.Proce ... -
spring 第13天 使用@scheduled注解执行定时任务
2015-01-06 23:11 54085我们使用spring的注解 @Scheduled 执行定时任务 ... -
Spring 第12天,事务传播属性和 隔离级别
2014-09-28 00:36 8171 事务的传播属性(Propagation) 1) REQ ... -
spring 第11天 quartz任务调度
2014-08-24 13:59 1146Quartz是一个强大的企业级任务调度框架,Spring中继承 ... -
spring 第10 天 AOP 面向切面
2014-08-21 00:08 1753AOP(Aspect Orient Programming ... -
spring 第9天 Resurce 资源访问
2014-08-17 22:20 1868Spring Resource接口 spring提供的Reso ... -
spring 第8天 Spring 注解
2014-08-17 15:33 1472spring注解 @Component:标注一个普通的sp ... -
spring 第7天 Bean,BeanFactory处理器,配置器
2014-08-16 21:46 1238spring 两种后处理器 第一种,Bean 后处理器 对容器 ... -
spring 第6天SpEL,P命名空间,Util Schema
2014-08-13 22:52 1316使用p名称空间配置属性 ... -
spring 第5天不同作用域的bean,注入Field,方法返回值
2014-08-11 22:31 2114协调作用域不同步的bean 问题是;当一个singleton的 ... -
spring 第4天bean继承,init,destory-method
2014-08-10 17:54 1654深入理解Spring容器中的b ... -
spring 第3天使用java类和XML配置bean
2014-08-09 16:51 1506下面采用java类来配置bean,前面都采用xml进行配置be ... -
spring 第2天,bean作用域,自动注入集合
2014-08-06 22:16 1933sping容器中的Bean <!---beans的全 ... -
spring 第1天 IOC,DI,国际化,容器事件
2014-08-04 21:27 13951.构造注入(就是使用 构 ... -
SpringMVC 注解 和非注解
2014-01-26 10:29 18018首先看看非注解的项目结构 在web.xml文件 配置spr ... -
详解spring 每个jar的作用
2013-11-19 23:54 3912spring.jar 是包含有完整 ... -
Spring配置Hibernate事务
2013-11-10 13:45 1218为了保证数据的一致性,在编程的时候往往需要引入事务这个概念。事 ... -
Spring 中引用Properties文件
2013-08-29 14:39 10657其中部分配置信息(邮件发送相关): #邮件发送的相关配置 ... -
Spring IOC控制反转 依赖注入DI
2012-12-15 09:37 2330目录 1.使用IOC控制反转 中的DI依赖注入 手工注入 ... -
Spring IOC控制反转 依赖注入DI
2012-12-14 16:23 8目录 1.使用IOC控制反转 中的DI依赖注入 (两种配置方式 ...
相关推荐
在session共享中遇到的坑。自己通过更改源码实现自定义功能
每个示例都带有详细的介绍文档、作者在使用过程中踩过的坑、解决方案及参考资料,方便快速上手为你提供学习捷径,少绕弯路,提高开发效率。 有需要写关于spring boot、spring cloud示例,可以给我提issue哦 ##...
Session与CompletableFuture的使用遇到的一些坑 SpringDataJpa之Hibernate5.0的Entity判断Dirty的过程 SpringDataJPA之Hibernate加载过程 高级用法学习资料: ...
### 分布式环境中Session丢失问题解析与解决方案 #### 一、引言 在现代互联网应用中,随着业务规模的增长和技术架构的演进,单体应用逐渐演化为微服务架构,而这种架构变化带来的一个常见问题是分布式环境下的...
面试必考之HashMap源码分析与实现 探索JVM底层奥秘ClassLoader源码分析与案例讲解 面试必备技能之Dubbo企业实战 ...互联网系统垂直架构之Session解决方案 分库分表之后分布式下如何...无处不在的Spring AOP事务及踩过的坑
Spring AOP事务管理是Java开发中的重要组成部分,它极大地简化了在分布式系统中对事务的处理。Spring通过AOP(面向切面编程)提供了一种声明式事务管理方式,允许开发者将事务规则与业务逻辑分离,提高了代码的...
面试中可能会涉及到Web应用的安全性,如CSRF(跨站请求伪造)、XSS(跨站脚本攻击)防护,以及session管理和cookie的使用。此外,性能优化也是重要的话题,包括内存管理、线程池配置、GZIP压缩、缓存策略等。 **...
在实际学习过程中,你需要逐步理解每个框架的核心概念,例如Spring的IoC和AOP、Struts2的Action和Result、Hibernate的Session和Query。同时,通过阅读和分析源码,你将了解如何在项目中合理划分模块,以及如何处理...
- 直接在方法参数中声明 `HttpServletRequest request` 和 `HttpSession session`,SpringMvc 会自动注入。 12. **处理请求参数**: - 可以通过在方法参数上添加 `@RequestParam` 注解来获取请求参数。 13. **...
避坑笔记2021CICDCI/CD流程以及原理说明设计模式:策略模式单例模式工厂模式装饰器模式观察者模式适配器模式模板方法模式SpringBoot:SpringBoot(1):公共配置SpringBoot(2):generatorSpringBoot(3):docker部署...