摘要:
SpringData整合hibernate CRUD操作: pom.xml jdbc.properties: applicationContext.xml: UserDaoImpl: spring + jpa 阅读全文
摘要:
SpringData整合hibernate CRUD操作: applicationContext.xml: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans 阅读全文
摘要:
嵌套查询,嵌套结果 多对多 N+1 问题 当使用嵌套查询,只想要1个结果,结果查到此对象的其他信息 解决方法使用嵌套结果,或使用懒加载缓解 @Ignore 补充 @Ignore //让该方法跳过单元测试 阅读全文
摘要:
spring管理 SqlMapConfig.xml: impl: 测试: 阅读全文
摘要:
Batch 批量操作 session = build.openSession(ExecutorType.BATCH, false); 阅读全文