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 06646f3 commit 154f48bCopy full SHA for 154f48b
src/main/java/org/apache/ibatis/builder/annotation/MapperAnnotationBuilder.java
@@ -123,7 +123,9 @@ public void parse() {
123
Method[] methods = type.getMethods();
124
for (Method method : methods) {
125
try {
126
- parseStatement(method);
+ if (!method.isBridge()) { // issue #237
127
+ parseStatement(method);
128
+ }
129
} catch (IncompleteElementException e) {
130
configuration.addIncompleteMethod(new MethodResolver(this, method));
131
}
0 commit comments