繁体   English   中英

从 Struts 迁移到 Spring

[英]Migration from Struts to Spring

我正在做一个项目,我们正在从 Struts 1.3 迁移到 Spring MVC 3.0。

JSP 存在一个问题,如下所述:

Struts 的标签用于从 Java 类中检索集合。

我的问题是......是否有任何标签可以将 struts 的<html:optionsCollection>标签替换为 Spring MVC?


<form:select onchange="javascript:changeSelectedType();" property="countryType" styleClass="form-control">                                  
        <html:optionsCollection property="stateType"/>
</form:select></code>

你可以简单地使用这个:

<form:select path="country"> 
   <form:option value="NONE" label="--- Select ---"/>
   <form:options items="${countryList}" />
</form:select>

祝你好运

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM