You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JIRA: https://jira.spring.io/browse/INT-3945
Adding test for async annotated ServiceActivator
fix whitespace
Address comments
Change copyright and author
* Some code style polishing
* Rename `Log4j2LevelAdjuster.level()` to more friendly `forLevel()`
factory method name.
* Add `@param level` to the `Log4j2LevelAdjuster.forLevel()` to fix
JavaDoc warning
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/annotation/AbstractMethodAnnotationPostProcessor.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -257,7 +257,7 @@ protected List<Advice> extractAdviceChain(String beanName, List<Annotation> anno
257
257
* by setting an empty array on the custom annotation.
258
258
*/
259
259
if (adviceChainNames != null && adviceChainNames.length > 0) {
Copy file name to clipboardExpand all lines: spring-integration-core/src/main/java/org/springframework/integration/config/annotation/ServiceActivatorAnnotationPostProcessor.java
+11-5
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2017 the original author or authors.
2
+
* Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-integration-core/src/test/java/org/springframework/integration/config/annotation/AnnotatedEndpointActivationTests-context.xml
Copy file name to clipboardExpand all lines: spring-integration-core/src/test/java/org/springframework/integration/config/annotation/AnnotatedEndpointActivationTests.java
+38-9
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright 2002-2015 the original author or authors.
2
+
* Copyright 2002-2018 the original author or authors.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
Copy file name to clipboardExpand all lines: spring-integration-test-support/src/main/java/org/springframework/integration/test/rule/Log4j2LevelAdjuster.java
+5-4
Original file line number
Diff line number
Diff line change
@@ -183,7 +183,7 @@ public Log4j2LevelAdjuster categories(String... categories) {
183
183
* @return the Log4j2LevelAdjuster instance
184
184
*/
185
185
publicstaticLog4j2LevelAdjustertrace() {
186
-
returnlevel(Level.TRACE);
186
+
returnforLevel(Level.TRACE);
187
187
}
188
188
189
189
/**
@@ -192,7 +192,7 @@ public static Log4j2LevelAdjuster trace() {
192
192
* @return the Log4j2LevelAdjuster instance
193
193
*/
194
194
publicstaticLog4j2LevelAdjusterdebug() {
195
-
returnlevel(Level.DEBUG);
195
+
returnforLevel(Level.DEBUG);
196
196
}
197
197
198
198
/**
@@ -201,15 +201,16 @@ public static Log4j2LevelAdjuster debug() {
201
201
* @return the Log4j2LevelAdjuster instance
202
202
*/
203
203
publicstaticLog4j2LevelAdjusterinfo() {
204
-
returnlevel(Level.INFO);
204
+
returnforLevel(Level.INFO);
205
205
}
206
206
207
207
/**
208
208
* The factory to produce Log4j2LevelAdjuster instances for arbitrary logging {@link Level}
209
209
* with the {@code org.springframework.integration} as default category.
210
+
* @param level the {@link Level} to use for logging
0 commit comments