我一直在使用本指南使用 mongodb 设置春季会话数据
https://docs.spring.io/spring-session-data-mongodb/docs/2.1.1.RELEASE/reference/htmlsingle/#introduction
但是我在配置方面遇到问题。我在 Spring Boot 中使用 Mongodb,我正在尝试为 Spring Boot Web 应用程序配置我的会话时间和会话名称,但它一直默认为 30 分钟,并且 mongodb 中的集合名称仍然是“会话”
这些是我尝试过的:
将这些添加到 application.properties:
server.session.timeout=1
spring.session.mongodb.collection-name=TestSESSIONS
和这个
server.servlet.session.timeout=60s
spring.session.mongodb.collection-name=TestSESSIONS
这些配置都不起作用
我已经查看了这个URL以获取 mongodb 的 spring 通用应用程序属性,但它都没有帮助配置 mongodb 的会话时间和集合名称。
经过数小时的研究,似乎 Spring Boot 使用了某种自动配置"org.springframework.boot.autoconfigure"
所以我在我的application.properties中添加了这个
spring.autoconfigure.exclude=org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
禁用自动配置。
但现在它只是给了我这个错误:
***************************
APPLICATION FAILED TO START
***************************
Description:
Parameter 0 of method mongoSessionRepository in org.springframework.session.data.mongo.config.annotation.web.http.MongoHttpSessionConfiguration required a bean of type 'org.springframework.data.mongodb.core.MongoOperations' that could not be found.
The following candidates were found but could not be injected:
- Bean method 'mongoTemplate' in 'MongoDataAutoConfiguration' not loaded because AnyNestedCondition 0 matched 2 did not; NestedCondition on MongoDataAutoConfiguration.AnyMongoClientAvailable.FallbackClientAvailable @ConditionalOnBean (types: com.mongodb.client.MongoClient; SearchStrategy: all) did not find any beans of type com.mongodb.client.MongoClient; NestedCondition on MongoDataAutoConfiguration.AnyMongoClientAvailable.PreferredClientAvailable @ConditionalOnBean (types: com.mongodb.MongoClient; SearchStrategy: all) did not find any beans of type com.mongodb.MongoClient
墨色风雨
茅侃侃
相关分类