mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Polishing
This commit is contained in:
+3
-3
@@ -636,9 +636,9 @@ public class AnnotationDrivenEventListenerTests {
|
||||
}
|
||||
|
||||
@Override
|
||||
@EventListener(condition = "'OK'.equals(#content)")
|
||||
public void handleString(String content) {
|
||||
super.handleString(content);
|
||||
@EventListener(condition = "#payload.startsWith('OK')")
|
||||
public void handleString(String payload) {
|
||||
super.handleString(payload);
|
||||
}
|
||||
|
||||
@EventListener(condition = "#root.event.timestamp > #p0")
|
||||
|
||||
Reference in New Issue
Block a user