随笔分类 -  mybatis学习

布局(Layout)
摘要:布局(Layout) 容器(Containers) <div class="container"> <div class="container-fluid "> //可以撑满整个屏幕(可惜右边有点点没占满) <!-- Content here --> <!-- Content here --> </ 阅读全文

posted @ 2018-05-23 23:33 爱吃菠萝 阅读(516) 评论(0) 推荐(0)

thymeleaf标签学习心得(一)
摘要:thymeleaf标签之th:text的使用 在写<p th:text=" "></p>时,在网上找到下面的写法(发现还是出错) 如果是需要从model中取值的话 写法为th:text="${model的name}" th:text="${childD.name}" 如果是需要字符串与model中的 阅读全文

posted @ 2018-05-03 22:37 爱吃菠萝 阅读(1779) 评论(0) 推荐(0)

mapping.mapper.xml文件中的标签详解
摘要:mapper.xml中常用的标签详解 一、SQL语句标签: 需要配置的属性:id="xxxx" >>> 表示此段sql执行语句的唯一标识,也是接口的方法名称【必须一致才能找到】 parameterType="" >>>表示该sql语句中需要传入的参数, 类型要与对应的接口方法的类型一致【可选】 re 阅读全文

posted @ 2018-04-27 15:09 爱吃菠萝 阅读(9047) 评论(0) 推荐(2)

导航