Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
77b52b99
Commit
77b52b99
authored
Jul 11, 2019
by
Dmytro Nosan
Committed by
Stephane Nicoll
Jul 22, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Configure ActiveMQConnectionFactory properly without spring-jms
See gh-17531
parent
260acd05
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
35 deletions
+84
-35
ActiveMQConnectionFactoryConfiguration.java
.../jms/activemq/ActiveMQConnectionFactoryConfiguration.java
+31
-35
ActiveMQAutoConfigurationTestsWithoutCachingConnectionFactoryTests.java
...nfigurationTestsWithoutCachingConnectionFactoryTests.java
+53
-0
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jms/activemq/ActiveMQConnectionFactoryConfiguration.java
View file @
77b52b99
...
...
@@ -48,47 +48,45 @@ import org.springframework.jms.connection.CachingConnectionFactory;
@ConditionalOnMissingBean
(
ConnectionFactory
.
class
)
class
ActiveMQConnectionFactoryConfiguration
{
private
static
ActiveMQConnectionFactory
createConnectionFactory
(
ActiveMQProperties
properties
,
List
<
ActiveMQConnectionFactoryCustomizer
>
connectionFactoryCustomizers
)
{
return
new
ActiveMQConnectionFactoryFactory
(
properties
,
connectionFactoryCustomizers
)
.
createConnectionFactory
(
ActiveMQConnectionFactory
.
class
);
}
@Configuration
@ConditionalOnClass
(
CachingConnectionFactory
.
class
)
@ConditionalOnProperty
(
prefix
=
"spring.activemq.pool"
,
name
=
"enabled"
,
havingValue
=
"false"
,
matchIfMissing
=
true
)
static
class
SimpleConnectionFactoryConfiguration
{
private
final
JmsProperties
jmsProperties
;
private
final
ActiveMQProperties
properties
;
private
final
List
<
ActiveMQConnectionFactoryCustomizer
>
connectionFactoryCustomizers
;
SimpleConnectionFactoryConfiguration
(
JmsProperties
jmsProperties
,
ActiveMQProperties
properties
,
@Bean
@ConditionalOnProperty
(
prefix
=
"spring.jms.cache"
,
name
=
"enabled"
,
havingValue
=
"false"
)
public
ActiveMQConnectionFactory
jmsConnectionFactory
(
ActiveMQProperties
properties
,
ObjectProvider
<
ActiveMQConnectionFactoryCustomizer
>
connectionFactoryCustomizers
)
{
this
.
jmsProperties
=
jmsProperties
;
this
.
properties
=
properties
;
this
.
connectionFactoryCustomizers
=
connectionFactoryCustomizers
.
orderedStream
()
.
collect
(
Collectors
.
toList
());
return
createConnectionFactory
(
properties
,
connectionFactoryCustomizers
.
orderedStream
().
collect
(
Collectors
.
toList
()));
}
@
Bean
@
ConditionalOnClass
(
CachingConnectionFactory
.
class
)
@ConditionalOnProperty
(
prefix
=
"spring.jms.cache"
,
name
=
"enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
CachingConnectionFactory
cachingJmsConnectionFactory
()
{
JmsProperties
.
Cache
cacheProperties
=
this
.
jmsProperties
.
getCache
();
CachingConnectionFactory
connectionFactory
=
new
CachingConnectionFactory
(
createConnectionFactory
());
connectionFactory
.
setCacheConsumers
(
cacheProperties
.
isConsumers
());
connectionFactory
.
setCacheProducers
(
cacheProperties
.
isProducers
());
connectionFactory
.
setSessionCacheSize
(
cacheProperties
.
getSessionCacheSize
());
return
connectionFactory
;
}
@Bean
@ConditionalOnProperty
(
prefix
=
"spring.jms.cache"
,
name
=
"enabled"
,
havingValue
=
"false"
)
public
ActiveMQConnectionFactory
jmsConnectionFactory
()
{
return
createConnectionFactory
();
}
static
class
CachingConnectionFactoryConfiguration
{
@Bean
@ConditionalOnProperty
(
prefix
=
"spring.jms.cache"
,
name
=
"enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
true
)
public
CachingConnectionFactory
cachingJmsConnectionFactory
(
JmsProperties
jmsProperties
,
ActiveMQProperties
properties
,
ObjectProvider
<
ActiveMQConnectionFactoryCustomizer
>
connectionFactoryCustomizers
)
{
JmsProperties
.
Cache
cacheProperties
=
jmsProperties
.
getCache
();
CachingConnectionFactory
connectionFactory
=
new
CachingConnectionFactory
(
createConnectionFactory
(
properties
,
connectionFactoryCustomizers
.
orderedStream
().
collect
(
Collectors
.
toList
())));
connectionFactory
.
setCacheConsumers
(
cacheProperties
.
isConsumers
());
connectionFactory
.
setCacheProducers
(
cacheProperties
.
isProducers
());
connectionFactory
.
setSessionCacheSize
(
cacheProperties
.
getSessionCacheSize
());
return
connectionFactory
;
}
private
ActiveMQConnectionFactory
createConnectionFactory
()
{
return
new
ActiveMQConnectionFactoryFactory
(
this
.
properties
,
this
.
connectionFactoryCustomizers
)
.
createConnectionFactory
(
ActiveMQConnectionFactory
.
class
);
}
}
...
...
@@ -98,13 +96,11 @@ class ActiveMQConnectionFactoryConfiguration {
static
class
PooledConnectionFactoryConfiguration
{
@Bean
(
destroyMethod
=
"stop"
)
@ConditionalOnProperty
(
prefix
=
"spring.activemq.pool"
,
name
=
"enabled"
,
havingValue
=
"true"
,
matchIfMissing
=
false
)
@ConditionalOnProperty
(
prefix
=
"spring.activemq.pool"
,
name
=
"enabled"
,
havingValue
=
"true"
)
public
JmsPoolConnectionFactory
pooledJmsConnectionFactory
(
ActiveMQProperties
properties
,
ObjectProvider
<
ActiveMQConnectionFactoryCustomizer
>
factoryCustomizers
)
{
ActiveMQConnectionFactory
connectionFactory
=
new
ActiveMQConnectionFactoryFactory
(
properties
,
factoryCustomizers
.
orderedStream
().
collect
(
Collectors
.
toList
()))
.
createConnectionFactory
(
ActiveMQConnectionFactory
.
class
);
ActiveMQConnectionFactory
connectionFactory
=
createConnectionFactory
(
properties
,
factoryCustomizers
.
orderedStream
().
collect
(
Collectors
.
toList
()));
return
new
JmsPoolConnectionFactoryFactory
(
properties
.
getPool
())
.
createPooledConnectionFactory
(
connectionFactory
);
}
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/jms/activemq/ActiveMQAutoConfigurationTestsWithoutCachingConnectionFactoryTests.java
0 → 100644
View file @
77b52b99
/*
* Copyright 2012-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
autoconfigure
.
jms
.
activemq
;
import
org.apache.activemq.ActiveMQConnectionFactory
;
import
org.junit.Test
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.test.context.FilteredClassLoader
;
import
org.springframework.boot.test.context.runner.ApplicationContextRunner
;
import
org.springframework.jms.connection.CachingConnectionFactory
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Tests for {@link ActiveMQConnectionFactoryConfiguration} when
* {@link CachingConnectionFactory} is not on the classpath.
*
* @author Dmytro Nosan
*/
public
class
ActiveMQAutoConfigurationTestsWithoutCachingConnectionFactoryTests
{
private
final
ApplicationContextRunner
contextRunner
=
new
ApplicationContextRunner
()
.
withConfiguration
(
AutoConfigurations
.
of
(
ActiveMQAutoConfiguration
.
class
))
.
withClassLoader
(
new
FilteredClassLoader
(
CachingConnectionFactory
.
class
));
@Test
public
void
cachingConnectionFactoryNotOnTheClasspathThenSimpleConnectionFactoryAutoConfigured
()
{
this
.
contextRunner
.
withPropertyValues
(
"spring.activemq.pool.enabled=false"
,
"spring.jms.cache.enabled=false"
)
.
run
((
context
)
->
assertThat
(
context
).
hasSingleBean
(
ActiveMQConnectionFactory
.
class
));
}
@Test
public
void
cachingConnectionFactoryNotOnTheClasspathAndCacheEnabledThenSimpleConnectionFactoryNotConfigured
()
{
this
.
contextRunner
.
withPropertyValues
(
"spring.activemq.pool.enabled=false"
,
"spring.jms.cache.enabled=true"
)
.
run
((
context
)
->
assertThat
(
context
).
doesNotHaveBean
(
ActiveMQConnectionFactory
.
class
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment