This commit is contained in:
Stephane Nicoll 2016-03-22 11:35:02 +01:00
parent 8d08e816a7
commit 93f392134a
1 changed files with 2 additions and 0 deletions

View File

@ -17,6 +17,7 @@
package org.springframework.boot.autoconfigure.jms.activemq;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty;
/**
* Configuration properties for ActiveMQ.
@ -73,6 +74,7 @@ public class ActiveMQProperties {
* @deprecated since 1.4 in favor of "spring.activemq.pool.enabled"
*/
@Deprecated
@DeprecatedConfigurationProperty(replacement = "spring.activemq.pool.enabled")
public boolean isPooled() {
return getPool().isEnabled();
}