英文:
Invalid property 'maximumActive' of bean class
问题
我尝试连接到 activemq 时遇到了这个错误:
ConnectException: 在 bean 类 [org.apache.activemq.pool.PooledConnectionFactory] 中的属性 'maximumActive' 无效:Bean 属性 'maximumActive' 不可写或具有无效的 setter 方法。setter 方法的参数类型是否与 getter 方法的返回类型匹配?
不确定这是什么意思。我在 bean 创建中漏掉了什么吗?
我有以下设置:
<bean id="llmJmsConnectionFactory" class="org.apache.activemq.pool.PooledConnectionFactory">
<property name="maximumActiveSessionPerConnection" value="20" />
<property name="maxConnections" value="10" />
<property name="connectionFactory" ref="llmJmsConnectionFactoryBase" />
</bean>
英文:
I am getting this error when trying to connect to activemq
ConnectException: Invalid property 'maximumActive' of bean class [org.apache.activemq.pool.PooledConnectionFactory]: Bean property 'maximumActive' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter?
Not sure what does it mean . Do I miss something in the bean creation ?
I have this setting :
bean id="llmJmsConnectionFactory" class="org.apache.activemq.pool.PooledConnectionFactory">
<property name="maximumActiveSessionPerConnection" value="20" />
<property name="maxConnections" value="10" />
<property name="connectionFactory" ref="llmJmsConnectionFactoryBase" />
</bean>
答案1
得分: 0
是的,这个属性是不同的:
最大活动会话每连接
尝试在你的Spring配置中使用这个属性。
英文:
Yes, the property is different:
maximumActiveSessionPerConnection
Try that instead in your Spring config.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论