-
Notifications
You must be signed in to change notification settings - Fork 34
Open
Description
Lines 62 to 79 in 8df8b24
/** | |
* Select flux flux. | |
* | |
* @param <R> the type parameter | |
* @param sql the sql | |
* @param params the params | |
* @param returnType the return type | |
* @return the flux | |
*/ | |
protected <R> Flux<R> selectFlux( | |
String sql, | |
SqlParameterSource params, | |
Class<R> returnType) { | |
RowMapper<R> rowMapper = this.getRowMapper(returnType); | |
return this.jdbcReactiveTemplate.queryFlux( | |
sql, this.getEntityJdbcProvider().getJdbcOperations(), params, rowMapper); | |
} |
비슷하게 selectMono도 있으면 좋을거 같습니다.
Metadata
Metadata
Assignees
Labels
No labels