We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ae18b8 commit 7e68df0Copy full SHA for 7e68df0
src/main/java/org/apache/ibatis/builder/annotation/MapperAnnotationBuilder.java
@@ -124,6 +124,9 @@ public void parse() {
124
for (Method method : methods) {
125
try {
126
parseStatement(method);
127
+ if (!method.isBridge()) { // issue #237
128
+ parseStatement(method);
129
+ }
130
} catch (IncompleteElementException e) {
131
configuration.addIncompleteMethod(new MethodResolver(this, method));
132
}
0 commit comments