gpt4 book ai didi

java - spring session redis 'No bean named ' springSessionRepositoryFilter'已定义'

转载 作者:可可西里 更新时间:2023-11-01 11:20:18 24 4
gpt4 key购买 nike

JDK1.7
Tomcat8
Redis SV 3.0
spring3.2.14、jedis 2.8.1、spring session 1.2、spring data redis 1.7

[INFO ][XmlBeanDefinitionReader(loadBeanDefinitions:316)] Loading XML bean definitions 
[INFO ][DefaultListableBeanFactory(preInstantiateSingletons:603)] Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@66039e85: defining beans [redisHttpSessionConfiguration,jedisPoolConfig,jedisConnectionFactory,redisTemplate]; root of factory hierarchyerere
[INFO ][ContextLoader(initWebApplicationContext:325)] Root WebApplicationContext: initialization completed in 361 ms
[ERROR][StandardContext(filterStart:4592)] Exception starting filter springSessionRepositoryFilter
org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'springSessionRepositoryFilter' is defined
at org.springframework.beans.factory.support.DefaultListableBeanFactory.getBeanDefinition(DefaultListableBeanFactory.java:575)

这是我的日志。我不知道如何解决这个问题。
看起来已经创建了 RedisHttpSessionConfiguration bean,
为什么过滤器 bean 仍然没有定义?

我不能改成spring4因为我的公司不让我
真的需要你的帮助,谢谢

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<!-- redis -->
<bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">
</bean>

<bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">
<property name="hostName" value="127.0.0.1"/>
<property name="port" value="6739" />
<property name="password" value="" />
<property name="timeout" value="1800" />
<property name="poolConfig" ref="jedisPoolConfig" />
<property name="usePool" value="true" />
</bean>

<bean id="redisTemplate" class="org.springframework.data.redis.core.StringRedisTemplate">
<property name="connectionFactory" ref="jedisConnectionFactory" />
</bean>

<!-- session redis -->
<bean id="redisHttpSessionConfiguration" class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
<property name="maxInactiveIntervalInSeconds" value="1800" />
</bean>
</beans>

这是我的配置文件,我的项目使用嵌入式tomcat,并没有web.xml ,我通过

添加监听器和过滤器
 ctx.addParameter("contextConfigLocation", "file:"+getHomePath()+"conf/applicationContext.xml");
ctx.addApplicationListener(new ApplicationListener("org.springframework.web.context.ContextLoaderListener",true));
ctx.addApplicationListener(new ApplicationListener("org.springframework.web.context.request.RequestContextListener",true));



org.apache.tomcat.util.descriptor.web.FilterDefspringSessionRepositoryFilterDef =new org.apache.tomcat.util.descriptor.web.FilterDef();
org.apache.tomcat.util.descriptor.web.FilterMap springSessionRepositoryFilterMapper = new org.apache.tomcat.util.descriptor.web.FilterMap();

springSessionRepositoryFilterDef.setFilterName("springSessionRepositoryFilter");
springSessionRepositoryFilterDef.setFilterClass(org.springframework.web.filter.DelegatingFilterProxy.class.getCanonicalName());
ctx.addFilterDef(springSessionRepositoryFilterDef);
springSessionRepositoryFilterMapper.setFilterName("springSessionRepositoryFilter");
springSessionRepositoryFilterMapper.addURLPattern("/*");
ctx.addFilterMap(springSessionRepositoryFilterMapper);

非常感谢

最佳答案

您需要添加 <context:annotation-config/>到您的 Spring XML 配置以启用处理 @Configuration类。

如您的日志输出所示,RedisHttpSessionConfiguration当前仅注册为常规 bean,但未处理其中的 bean 定义。

关于java - spring session redis 'No bean named ' springSessionRepositoryFilter'已定义',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38583916/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com