摘要:
一、无参构造函数 <bean id="user" class="com.wt.pojo.User"> <property name="name" value="tom"/> </bean> 二、含参构造函数 1、通过 name 键值对 <bean id="teacher" class="com.wt 阅读全文
摘要:
IOC: 由spring 进行创建、管理、配置 官网:https://docs.spring.io/spring/docs/5.2.7.RELEASE/spring-framework-reference/core.html#beans-child-bean-definitions 一个简单的例子 阅读全文
摘要:
https://docs.spring.io/spring/docs/5.2.7.RELEASE/spring-framework-reference/core.html#spring-core IOC:控制反转 理解: 原本一个程序的控制权在程序员手中,用户修改功能需要程序员修改 IOC用户现在本 阅读全文
摘要:
一、网址 文档: https://spring.io/projects/spring-framework 资源下载: https://repo.spring.io/release/org/springframework/spring/ maven 下载 spring-webmvc spring jd 阅读全文
摘要:
作用:ehcache主要用于缓存 过程: 1、maven(导包) mybatis-ehcache 2、定义cache <cache type="org.mybatis.caches.ehcache.EhcacheCache"/> 其它参考 https://www.cnblogs.com/myseri 阅读全文
摘要:
加快查找 一、一级缓存(sqlSession) 失去缓存的情况 1、查询不同的语句 2、增删改操作,可能会改变原来的数据,所以缓存必定刷新 3、查询不同的Mapper.xml 4、手动清理缓存 sqlSession.clearCache(); 注意:一级缓存默认开启,而且去不掉,在sqlSessio 阅读全文
摘要:
一、本质 动态sql是,在sql语句添加逻辑语句 官网:https://mybatis.org/mybatis-3/zh/dynamic-sql.html (看官网足够)) 二、if 1、接口类 List<Blog> getBlogInfo(Map<String, Object> map); 2、x 阅读全文