我正在尝试为我的MongoDB服务器使用连接池,但它似乎是我第一次初始化应用程序时创建的连接,它们甚至没有被触及。我正在使用Spring Data MongoDB。
这是我对root-context.xml的配置
<mongo:mongo-client id="mongoClient" host="localhost"
port="27017">
<mongo:client-options connect-timeout="10000"
connections-per-host="50" min-connections-per-host="5"
threads-allowed-to-block-for-connection-multiplier="10" />
</mongo:mongo-client>
<mongo:db-factory dbname="project" mongo-ref="mongoClient" />
<mongo:repositories base-package="com.stackoverflow.repositories" />
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate">
<constructor-arg name="mongoDbFactory" ref="mongoDbFactory" />
</bean>