以下のように、配列に場所を含むStruts 1.2 Beanを持っています
Register.java
public class Register extends ActionForm
{
private String[] userLocation = {"Chennai", "Bangalore", "Delhi", "Singapore"};
.
.
//Getters and Setters
.
.
.
}
これをオプションのドロップダウン選択に入力したい.次のコードを試しましたが、機能しません.これを行う方法はありますか.配列を使用してコレクションを使用せずにこれを行うことは可能ですか.
RegisterForm.jsp
<html:select property="userSelectedLocation">
<html:options property="id" labelProperty="name" />
</html:select>