You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 1-Template design pattern define some steps which are executed in order, the super type define this order,
19
19
* the subclasses implement only some predefined steps.
20
20
* 2-
21
-
* a- RowMapper<Object>: allows to handle rows in a result set row by row {@link data_transaction_jpa.question_02.MyDataSource#rowMapper(JdbcTemplate)}.
21
+
* a- RowMapper<Object>: allows to handle rows in a result set row by row {@link data.question_02.MyDataSource#rowMapper(JdbcTemplate)}.
22
22
* b-resultSetExtractor<List<Object>>:
23
-
* allows to process the entire result set {@link data_transaction_jpa.question_02.MyDataSource#resultSetExtractor(JdbcTemplate)}.
23
+
* allows to process the entire result set {@link data.question_02.MyDataSource#resultSetExtractor(JdbcTemplate)}.
24
24
* c-@todo example to make for the RowCallbackHandler
25
25
* * 3-yes
26
26
* 4-Jdbc template release the connection after every request. jdbctemplate is trade safe
0 commit comments