stmt (1) 썸네일형 리스트형 [HikariCP][Delegate]ProxyPreparedStatement 타깃 코드 다음 코드의 동작과 흐름을 확인해보자. public abstract class ProxyPreparedStatement extends ProxyStatement implements PreparedStatement { ProxyPreparedStatement(ProxyConnection connection, PreparedStatement statement) { super(connection, statement); } public boolean execute() throws SQLException { this.connection.markCommitStateDirty(); return ((PreparedStatement)this.delegate).execute(); } public ResultSe.. 이전 1 다음