摘要:
TransactionTemplate的源码如下:public class TransactionTemplate extends DefaultTransactionDefinition implements TransactionOperations, InitializingBean{ . . . }TransactionTemplate继承了DefaultTransactionDefinition,实现了TransactionOperations,InitializingBean接口。先研究InitializingBean接口InitializingBean接口为bean提供... 阅读全文
摘要:
java.io.tmpdir – 默认临时文件路径System.getProperty("java.io.tmpdir")File jarFile = File.createTempFile("EJob-", ".jar", new File(System.getProperty("java.io.tmpdir"))); 阅读全文
摘要:
在缺省模式下,MYSQL是autocommit模式的,所有的数据库更新操作都会即时提交,所以在缺省情况下,mysql是不支持事务的。但是如果你的MYSQL表类型是使用InnoDB Tables 或 BDB tables的话,你的MYSQL就可以使用事务处理,使用SET AUTOCOMMIT=0就可以使MYSQL允许在非autocommit模式,在非autocommit模式下,你必须使用COMMIT来提交你的更改,或者用ROLLBACK来回滚你的更改。示例如下:START TRANSACTION;SELECT @A:=SUM(salary) FROM table1 WHERE type=1;UP 阅读全文
摘要:
否则启动会报错:java.lang.IllegalArgumentException: Mapped Statements collection already contains value for DAO类名.方法名() 阅读全文