如何使用if语句比较mybatis 3中的字符串 - 动态sql
在myBatis 3中使用动态sql时如何比较字符串?
以前使用 iBatis,您可以执行以下操作:
<isEqual property="sortBy" compareValue="portfolio_id">order by p.portfolio_id</isEqual>
现在使用 myBatis,您可以执行以下操作:
<if test="sortBy.equals('facility_id')">
order by pd.facility_id
</if>
sortBy 是参数映射中的一个属性,“facility_id”是值,
我有点困惑,因为它在 ibatis 中是直接的。
In myBatis 3 how do you compare a string when using dynamic sql?
With iBatis previously you could do the following:
<isEqual property="sortBy" compareValue="portfolio_id">order by p.portfolio_id</isEqual>
Now with myBatis can you do the following:
<if test="sortBy.equals('facility_id')">
order by pd.facility_id
</if>
sortBy is a property in the parameter map and "facility_id" is the value
I'm a little bit confused as it was straight forward in ibatis.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你所要做的就是
All you have to do is