Harry Chen
Harry Chen
尝试了一下,虽然不是很优雅,但是能精确定位到每个带替换参数: Object sqlObj = null; String className = metaObject.getOriginalObject().getClass().getSimpleName(); if (className.equals("DefaultSelectStatementProvider")) sqlObj = metaObject.getValue("selectStatement"); else if (className.equals("DefaultUpdateStatementProvider")) sqlObj = metaObject.getValue("updateStatement"); String sql = sqlObj.toString(); 这样获取到的SQL会是类似这样的: select * from t1 where...
Hi, Based on 5.1.1-SNAPSHOT, I built the project with graalvm Native and the build was succeed. But I got an run time exception as following. And, if the project is...