<select id="selectEmp" resultType="entity.Emp"> <bind name="date" value="@tools.DateUtil@getDate.value"/> //请教一下 bind标签有什么作用 select <include refid="empColumns"></include> from e_emp e where e.ebirthday <= #{date} // <这个是什么意思,= #{date} 这句代码是什么意思。 </select>
1 回答
已采纳
大咪
TA贡献785条经验 获得超332个赞
<bind name="date" value="@tools.DateUtil@getDate.value"/> //bind 元素可以从 OGNL 表达式中创建一个变量并将其绑定到上下文。 //这个标签我也没怎么用过,所以不太清楚。。但是应该就是为了绑定日期并且得到日期的值。。。。 from e_emp e where e.ebirthday <= #{date} // <这个是"<"这个的转义符,因为在mybatis里你写<这个会和xml里的标签<>弄混。。系统会报错不认。 //= #{date} 这句代码是你查询语句里的日期等于你网页输入传入的值
添加回答
举报
0/150
提交
取消