インターフェイスで次のコードを使用しています。ブラウザに結果が表示されると、値の順序が変更されます。問題を解決するには?
public static final Map<String,String> BED = new HashMap<String,String>(){
{
put("A","Any");
put("0","Studio");
put("1","1 or more");
put("2","2 or more");
put("4","4 or more");
};
};
<s:select name="BED" label="Bedrooms" list="@interfaces.Items@BED"/>
ブラウザでの順序は次のとおりです
1 or more
Studio
Any
4 or more