簡體   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