上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: spring介绍 三层架构中spring位置 spring一站式框架(正是因为spring框架性质是属于容器性质的.) 容器中装什么对象就有什么功能.所以可以一站式. 不仅不排斥其他框架,还能帮其他框架管理对象. aop支持 ioc思想 spring jdbc aop 事务 junit 测试支持 s 阅读全文
posted @ 2020-05-09 22:34 夜雨秋池 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 查询总结 1.oid查询-get 2.对象属性导航查询 3.HQL 4.Criteria 5.原生SQL 查询-HQL语法 基础语法 String hql = " from cn.itheima.domain.Customer ";//完整写法 String hql2 = " from Custom 阅读全文
posted @ 2020-05-09 11:44 夜雨秋池 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 一对多|多对一 关系表达 表中的表达 实体中的表达 orm元数据中表达 一对多 Customer.hbm.xml中 <!-- 集合,一对多关系,在配置文件中配置 --> <!-- name属性:集合属性名 column属性: 外键列名 class属性: 与我关联的对象完整类名 --> <!-- 级联 阅读全文
posted @ 2020-05-08 20:26 夜雨秋池 阅读(105) 评论(0) 推荐(0) 编辑
摘要: Hibernate中的实体规则 实体类创建的注意事项 1.持久化类提供无参构造函数 (持久化类,说的就是实体类;无参构造函数它本身就有,如果你还要添加其他构造方法,那么需要把空参构造函数也重写一遍) 2.成员变量私有,提供公有的get/set方法,需要提供属性 (属性,要看get/set方法;成员变 阅读全文
posted @ 2020-05-05 18:19 夜雨秋池 阅读(111) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ChenCurry/test_struts2/tree/hibernate orm框架 (object relationg mapping对象关系映射) (分4级) dbutils属于1级 mybatis属于2级 hibernate属于4级:完全面向对象操作数据 阅读全文
posted @ 2020-05-05 11:15 夜雨秋池 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 登陆练习 <interceptors> <!-- 注册拦截器 --> <interceptor name="loginInterceptor" class="cn.itheima.web.interceptor.LoginInterceptor"></interceptor> <!-- 注册拦截器栈 阅读全文
posted @ 2020-04-29 00:15 夜雨秋池 阅读(99) 评论(0) 推荐(0) 编辑
摘要: OGNL表达式 Object Graphic Navigation Language 对象,图,导航,语言 OGNL表达式取值范围 OGNL基本语法 // 准备ONGLContext // 准备Root User rootUser = new User("tom", 18); // 准备Contex 阅读全文
posted @ 2020-04-28 10:11 夜雨秋池 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 最好的学习方式是断点调试框架源码 四种结果处理方式 请求转发(它悄悄替我们找hello.jsp借了钱) http://localhost:8080/test_struts2/hello/Demo1_Action.action 请求重定向(它让我们去找hello.jsp借钱) http://local 阅读全文
posted @ 2020-04-26 16:45 夜雨秋池 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://github.com/ChenCurry/test_struts2/tree/struts2 MVC个人理解 (后话:第二课中有讲解) 从下图可见struts2是web层的框架,用于处理或者说响应web请求而用(代替传统servlet); 而spring,是提供的容器,用以管理web 阅读全文
posted @ 2020-04-26 09:56 夜雨秋池 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 官方文档:http://mybatis.org/spring-boot-starter/mybatis-spring-boot-autoconfigure/Maven仓库地址:https://mvnrepository.com/artifact/org.mybatis.spring.boot/myb 阅读全文
posted @ 2020-04-26 09:55 夜雨秋池 阅读(168) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页