<form:checkboxes path="showsealType" items="${fns:getDictList('sealType')}" itemLabel="label" itemValue="value" htmlEscape="false" class="gen-input-width"/>
当选中多个时候

后台存储的为 1,2,3,4
解决办法
将path改为String[] 类型,当后台保存的时候,再从数据转化为字符串保存,
回显的时候,再从字符串切割为数组,放到该属性上即可