Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...