1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
INFO - Began transaction (1): transaction manager [org.springframework.jdbc.datasource.DataSourceTransactionManager@1d64c37]; default rollback = true
DEBUG - Executing prepared SQL update
DEBUG - Executing prepared SQL statement [insert into personne(nomPersonne, prenomPersonne, agePersonne) values(?, ?, ?)]
DEBUG - Fetching JDBC Connection from DataSource
DEBUG - Creating new JDBC Connection to [jdbc:mysql://localhost/spring]
DEBUG - Registering transaction synchronization for JDBC Connection
DEBUG - Bound value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] to thread [main]
DEBUG - Retrieved value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] bound to thread [main]
DEBUG - Setting SQL statement parameter value: column index 1, parameter value [stemmer], value class [java.lang.String], SQL type unknown
DEBUG - Setting SQL statement parameter value: column index 2, parameter value [laurent], value class [java.lang.String], SQL type unknown
DEBUG - Setting SQL statement parameter value: column index 3, parameter value [23], value class [java.lang.Integer], SQL type unknown
DEBUG - SQL update affected 1 rows
DEBUG - Retrieved value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] bound to thread [main]
DEBUG - Executing prepared SQL update
DEBUG - Executing prepared SQL statement [insert into personne(nomPersonne, prenomPersonne, agePersonne) values(?, ?, ?)]
DEBUG - Retrieved value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] bound to thread [main]
DEBUG - Retrieved value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] bound to thread [main]
DEBUG - Setting SQL statement parameter value: column index 1, parameter value [wrobel], value class [java.lang.String], SQL type unknown
DEBUG - Setting SQL statement parameter value: column index 2, parameter value [marc], value class [java.lang.String], SQL type unknown
DEBUG - Setting SQL statement parameter value: column index 3, parameter value [23], value class [java.lang.Integer], SQL type unknown
DEBUG - SQL update affected 1 rows
DEBUG - Retrieved value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] bound to thread [main]
DEBUG - Triggering beforeCompletion synchronization
DEBUG - Removed value [org.springframework.jdbc.datasource.ConnectionHolder@b9b538] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@25d2b2] from thread [main]
DEBUG - Returning JDBC Connection to DataSource
DEBUG - Initiating transaction rollback
DEBUG - Rolling back JDBC transaction on Connection [com.mysql.jdbc.Connection@1595f51]
DEBUG - Triggering afterCompletion synchronization
DEBUG - Clearing transaction synchronization
DEBUG - Removed value [org.springframework.jdbc.datasource.ConnectionHolder@9e29fb] for key [org.springframework.jdbc.datasource.DriverManagerDataSource@110fe28] from thread [main]
DEBUG - Releasing JDBC Connection [com.mysql.jdbc.Connection@1595f51] after transaction
DEBUG - Returning JDBC Connection to DataSource
INFO - Rolled back transaction after test execution
INFO - Closing org.springframework.context.support.GenericApplicationContext@1431340: display name [org.springframework.context.support.GenericApplicationContext@1431340]; startup date [Wed Apr 18 10:58:29 CEST 2007]; root of context hierarchy
DEBUG - Publishing event in context [org.springframework.context.support.GenericApplicationContext@1431340]: org.springframework.context.event.ContextClosedEvent[source=org.springframework.context.support.GenericApplicationContext@1431340: display name [org.springframework.context.support.GenericApplicationContext@1431340]; startup date [Wed Apr 18 10:58:29 CEST 2007]; root of context hierarchy]
INFO - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@10a3b24: defining beans [personneDAO,dataSource,txManager]; root of factory hierarchy |