1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| …… Creating a new SqlSession SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f27d5a9] was not registered for synchronization because synchronization is not active JDBC Connection [com.mysql.jdbc.JDBC4Connection@bad933d] will not be managed by Spring ==> Preparing: SELECT id,city_name,is_close,is_deleted,is_test FROM t_hr_city WHERE is_deleted = ? AND is_test = ? ORDER BY id ASC ==> Parameters: 0(Integer), 0(Integer) <== Columns: id, city_name, is_close, is_deleted, is_test <== Row: 1, 北京, 0, 0, 0 <== Row: 2, 深圳, 0, 0, 0 <== Row: 3, 上海, 0, 0, 0 <== Row: 4, 成都, 0, 0, 0 <== Row: 5, 广州, 0, 0, 0 <== Row: 6, 武汉, 0, 0, 0 <== Row: 7, 杭州, 0, 0, 0 <== Row: 8, 江西, 0, 0, 0 <== Row: 9, 广西, 0, 0, 0 <== Row: 10, 石家庄, 0, 0, 0 <== Total: 10 Closing non transactional SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@7f27d5a9] ……
|