从我的 Java 代码中,我返回Set
了Address
类对象……现在在 FreeMarker 中,我想显示所有此类Address
对象值的值……
我的 Java 类
public class Address implements java.io.Serializable {
private String phone;
private String landLineNumber;
public Address() {}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getLandLineNumber() {
return this.landLineNumber;
}
public void setLandLineNumber(String landLineNumber) {
this.landLineNumber = landLineNumber;
}
在 FreeMarker 我正在做以下事情
[#list addList as ${setaddress!''} Phone : ${addList.phone!''}<br/>
Land Line : ${addList.landLineNumber!''}
[/#list]
现在我在填充时遇到错误,这是正确的方法吗???