摘要:
三: 一:cache,mybatis将某些数据保存于内存中; 二:一级缓存;二级缓存; 三:提高系统的性能(前提:缓存的命中率要高,如果低,就没有意义); 一级缓存: 一:本地缓存; 二:在参数和sql完全一样的情况下,SqlSession不会每次都发送sql到数据库查询数据,浪费资源,于是在没有声 阅读全文
摘要:
foreach: @Data public class Blog { private String id; private String title; private String author; private Date createTime; private int views; } <?xml 阅读全文
摘要:
@Data public class Student { private int id; private String name; private Teacher teacher; } @Data public class Teacher { private int id; private Stri 阅读全文
摘要:
File→Settings→plugins→搜索→安装; 好用插件:lombok 阅读全文
摘要:
阅读全文
摘要:
作为parameter:将map的key和value映射到parameter List<User> getUserListByLimit(Map<String,Object> map); <select id="getUserListByLimit" parameterType="map" resu 阅读全文
摘要:
自定义别名方式一:<configuration> <typeAliases> <typeAlias type="com.nbg.pojo.User" alias="user"/> </typeAliases></configuration>自定义别名方式二:<configuration> <type 阅读全文
摘要:
mybatis提供了3种配置方式一:property子元素二:properties配置文件三:程序参数传递一:property子元素 <configuration> <properties > <property name="driver" value="com.mysql.jdbc.Driver" 阅读全文