随笔分类 -  Hibernate

摘要:事务的几种传播特性1. PROPAGATION_REQUIRED: 如果存在一个事务,则支持当前事务。如果没有事务则开启比如说:在UserManager中addUser里开启了,那么在addLog时则他会去看有没有,有就用,所以可以保证在同一个事务嘛.2. PROPAGATION_SUPPORTS:... 阅读全文
posted @ 2015-07-31 21:24 agindage 阅读(305) 评论(0) 推荐(0)
摘要:hibernate.cfg.xml文件内容: org.hibernate.dialect.MySQLDialect true true UTF-8 thread true true com.mysql.jdbc.Driver jdbc:mysql://localhost:3306... 阅读全文
posted @ 2015-07-28 17:20 agindage 阅读(398) 评论(0) 推荐(0)
摘要:我的hibernate.cfg.xml文件如下: org.hibernate.dialect.MySQLDialect true true UTF-8 thread true true com.mysql.jdbc.Driver jdbc:mysql://localhost:33... 阅读全文
posted @ 2015-07-27 17:24 agindage 阅读(1019) 评论(0) 推荐(0)