<form:select>

<form:select path="classification" class="input-medium">
<form:option value="" label=""/>
<form:options items="${types}" itemLabel="classificationName" itemValue="classificationCode" htmlEscape="false"/>
</form:select>

表单中可以绑定数据的动态下拉列表,

path="classification" 表单中的属性名

<form:option value="" label=""/> 

原文地址:https://www.cnblogs.com/ChenD/p/7009928.html