概述
在需要使用xml文件时,我们往往可能需要写一大堆判断什么的,那么我们可不可以引入java类的方法来简化xml的配置操作呢?答案是,当然可以,那么如何呢?
请看下面一个例子:
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(name)">
and LOGIN_NAME like #{pattern}
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(birthdaybg)">
and BIRTHDAY >= to_date(#{birthdaybg},'yyyy-MM-dd')
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(birthdayed)">
and BIRTHDAY <= to_date(#{birthdayed},'yyyy-MM-dd')
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(registerbg)">
and REGISTER_TIME >=to_date(#{registerbg},'yyyy-MM-dd')
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(registered)">
and REGISTER_TIME <= to_date(#{registered},'yyyy-MM-dd')
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(gender)">
and GENDER=#{gender}
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(userstatus)">
and USER_STATUS=#{userstatus}
</if>
<if test="@org.apache.commons.lang3.StringUtils@isNotBlank(province)">
and PROVINCE=#{province}
</if>
这是一个mybatis的sql映射文件的配置,我们可以用
@org.apache.commons.lang3.StringUtils@isNotBlank()
的java类的方法来对值进行判断,这样大大的减少了笨重的代码量。
最后
以上就是迅速书包为你收集整理的OGNL表达式用于xml文件中的全部内容,希望文章能够帮你解决OGNL表达式用于xml文件中所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复