在一个SSM分布式项目中一个服务报错: ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is java.sql.SQLException: ${jdbc.driver} ### The error may exist in com/pinyougou/mappe…
mysql /*SESSION LEVEL*/ select @@tx_isolation; /*GLOBAL LEVEL*/ select @@global.tx_isolation; select 'SESSION' as scope,@@tx_isolation UNION select 'GLOBAL' as scope,@@global.tx_isolation; -- SESSION REPEATABLE-READ -- GLOBAL REPEATABLE-READ java.sql…