我想包括一個枚舉添加枚舉訪問Spring WebFlow
public enum ContactType {
PHONE,
FAX,
MAIL
}
我flow.xml
有在視圖的訪問,並在流動本身。我試圖將其添加爲VAR(如豆腐):
<var name="ContactType" class="my.package.common.util.ContactType"/>
但我得到的錯誤:
NoSuchMethodException: my.package.common.util.ContactType.<init>()
我應該init()
枚舉以某種方式?或者可能有另一種方法來包含它?
你嘗試HTTP://forum.spring。 IO /論壇/ Spring的項目/網絡/的Webflow/78197-枚舉常量功能於Webflow的表達語言? –
你正在使用哪個EL?春季EL? OGNL? – rptmat57
@ rptmat57 Spring EL – joc