随记:springboot的xml中数据库表名动态写法
随记:springboot的xml中数据库表名动态写法<![CDATA[ ${gridLayerName} ]]>,直接使用#{是不可以的}
xml
<select id="getYbLabelNum" resultType="java.lang.Integer">
select SUM(1) from <![CDATA[ ${labelLayerName} ]]>
</select>