File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
spring-integration-jpa/src
main/java/org/springframework/integration/jpa/core
test/java/org/springframework/integration/jpa/core Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2023 the original author or authors.
2
+ * Copyright 2002-2025 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.
@@ -569,7 +569,7 @@ else if (this.entityClass != null) {
569
569
else {
570
570
throw new IllegalStateException ("For the polling operation, one of "
571
571
+ "the following properties must be specified: "
572
- + "query , namedQuery or entityClass." );
572
+ + "jpaQuery, nativeQuery , namedQuery or entityClass." );
573
573
}
574
574
return payload ;
575
575
}
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2002-2022 the original author or authors.
2
+ * Copyright 2002-2025 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.
@@ -75,7 +75,7 @@ public void testExecutePollWithNoEntityClassSpecified() {
75
75
.isThrownBy (jpaExecutor ::poll )
76
76
.withMessage ("For the polling operation, one of "
77
77
+ "the following properties must be specified: "
78
- + "query , namedQuery or entityClass." );
78
+ + "jpaQuery, nativeQuery , namedQuery or entityClass." );
79
79
}
80
80
81
81
@ Test
You can’t perform that action at this time.
0 commit comments