解决方案

我以前曾尝试将访问器添加到LineItem类,例如

public String getItemNo() {
    return itemNo;
}

并将FTL从${lineItem.itemNo}更改为${lineItem.getItemNo()},但这无效。 解决方案是添加访问器,但不更改FTL(将其保留为${lineItem.itemNo}

背景

我正在使用Freemarker格式化某些电子邮件。在这封电子邮件中,我需要列出许多产品信息行,例如发票上的行。我的目标是传递一个对象列表(在Map内),以便可以在FTL中遍历它们。当前,我遇到一个问题,无法从模板内访问对象属性。我可能只想念一些小东西,但此刻我很沮丧。

使用Freemarker的Java类

这是我的代码的简化版本,目的是为了更快地理解要点。 LineItem是具有公共(public)属性(与此处使用的名称匹配)的公共(public)类,使用简单的构造函数来设置每个值。我也尝试过使用带有访问器的私有(private)变量,但这也不起作用。

我还将List对象的这个LineItem存储在Map中,因为我还将Map用于其他键/值对。
Map<String, Object> data = new HashMap<String, Object>();
List<LineItem> lineItems = new ArrayList<LineItem>();

String itemNo = "143";
String quantity = "5";
String option = "Dried";
String unitPrice = "12.95";
String shipping = "0.00";
String tax = "GST";
String totalPrice = "64.75";

lineItems.add(new LineItem(itemNo, quantity, option, unitPrice, shipping, tax, totalPrice));
data.put("lineItems", lineItems);

Writer out = new StringWriter();
template.process(data, out);

FTL
<#list lineItems as lineItem>
    <tr>
        <td>${lineItem.itemNo}</td>
        <td>${lineItem.quantity}</td>
        <td>${lineItem.type}</td>
        <td>${lineItem.price}</td>
        <td>${lineItem.shipping}</td>
        <td>${lineItem.gst}</td>
        <td>${lineItem.totalPrice}</td>
   </tr>
</#list>

错误
FreeMarker template error:
The following has evaluated to null or missing:
==> lineItem.itemNo  [in template "template.ftl" at line 88, column 95]

LineItem.java
public class LineItem {
    String itemNo;
    String quantity;
    String type;
    String price;
    String shipping;
    String gst;
    String totalPrice;

    public LineItem(String itemNo, String quantity, String type, String price,
                    String shipping, String gst, String totalPrice) {
        this.itemNo = itemNo;
        this.quantity = quantity;
        this.type = type;
        this.price = price;
        this.shipping = shipping;
        this.gst = gst;
        this.totalPrice = totalPrice;
    }
}

最佳答案

LineItem类缺少其所有属性的getter方法。因此,Freemarker无法找到它们。您应该为LineItem的每个属性添加一个getter方法。

09-29 22:32