摘要:
springmvc开始搭建 源码地址 "https://gitee.com/flydb/spingjpamy" pom: web.xml: xxx servlet.xml: controller: applicationContent mybatis.xml: applicationContent 阅读全文
摘要:
```
git pull origin master –allow-unrelated-histories ```
``` git push -u origin master -f
``` 阅读全文
摘要:
jsp jsp声明 jsp注解 jsp表达式 jsp脚本 jsp的3个编译指令 page 只针对当前页面的指令 include 用于指定包含另一个页面 taglib 用于定义和访问自定义标签 <%@ 编译指令名 属性名="属性值"% page import <% 类似于导入包 % <%@page i 阅读全文
摘要:
反射 动态代理:略 jdk implements InvocationHandler cglib implements MethodInterceptor jdk动态代理实现拦截器 观察者模式实例:通过java.util.Observer实现 阅读全文
摘要:
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); 阅读全文
摘要:
log4j.properties与db.properties 阅读全文