Mybatis 的多个参数的使用和 sql日志的打印
- mybatis的日志打印:
在log4j.properties 里面添加如下的语句
#log4j.logger.org.apache.ibatis=debug,stdout
#log4j.logger.java.sql=debug,stdout
- 多个String类型的参数的导入:
<select id="findCategoryByCN" parameterType="String" resultType="Map">
????????select *
????????from t_business_classificationmeta where 1=1
????????<if test="#{1} != null and #{1} != ‘‘"> and TITLE = #{1}</if>
????????<if test="#{0} != null and #{0} != ‘‘"> and CLASSIFICATIONCODE=#{0} </if>
????</select>
?
不是直接使用名称进行代替。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。