Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

is it possible to know the parameter exists in MyBatis XML

I am using this config to execute sql in MyBatis Xml:

<if test="statisticTimes != null">
                and date_format(FROM_UNIXTIME(statistic_time/1000), '%Y-%m-%d') IN
                <foreach item="item" index="index" collection="statisticTimes" open="(" separator=","
                         close=")">
                    #{item}
                </foreach>
            </if>

shows this error:

Caused by: org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter 'statisticTimes' not found. Available parameters are [pageQuery, param1]

I do not want the code to throw exception when statisticTimes not exists, is it a way to archive this? or I could known if the param exists or not before using it. may be the code like:

params.exists('statisticTimes') && statisticTimes != null
question from:https://stackoverflow.com/questions/65935203/is-it-possible-to-know-the-parameter-exists-in-mybatis-xml

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...