caippppppppppp
Results
1
comments of
caippppppppppp
 建议通过Class mapperInterface 获取所有方法名,拼接后通过Configuration类 getMappedStatement(String id, boolean validateIncompleteStatements) 获取MappedStatement ```java Method[] methods = mapperInterface.getMethods(); for (Method method : methods) { try { String id = prefix + "." + method.getName();...