看来此问题的解决方案是我在
<spring-form:options>标签中使用了属性“ path” 。应该是“项目”,而不是“路径”。
更正后的JSP片段:
<spring-form:select path="selectOptions"> <spring-form:option value="" label="*** Select Option ***" /> <spring-form:options items="${availableOptions}" /></spring-form:select>


