无效的属性 ‘maximumActive’,属于 bean 类。

huangapple go评论71阅读模式
英文:

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">

	&lt;property name=&quot;maximumActiveSessionPerConnection&quot; value=&quot;20&quot; /&gt;
	
	
	&lt;property name=&quot;maxConnections&quot; value=&quot;10&quot; /&gt;
	
	&lt;property name=&quot;connectionFactory&quot; ref=&quot;llmJmsConnectionFactoryBase&quot; /&gt;
&lt;/bean&gt;

答案1

得分: 0

是的,这个属性是不同的:

最大活动会话每连接

尝试在你的Spring配置中使用这个属性。

英文:

Yes, the property is different:

maximumActiveSessionPerConnection

Try that instead in your Spring config.

huangapple
  • 本文由 发表于 2020年4月4日 19:17:20
  • 转载请务必保留本文链接:https://go.coder-hub.com/61027263.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定