我在托管 bean 中有一个 Map
private Map<FaseProducao, Set<FichaTecnicaOperacao>> fichasTecnicasOperacaoResumo;
对实体 FichaTecnica 的引用:
public class FichaTecnica{
//...
private Set<FichaTecnicaOperacao> operacoes;
}
我需要将其作为参数传递给 beans.put () 以使用 jett 生成 xls:
public void createRelatorioFichaTecnica(FichaTecnica fichaTecnica) throws IOException {
//ommited...
Map<String, Object> beans = new HashMap<String, Object>();
beans.put("operacaoResumo", fichasTecnicasOperacaoResumo);
try (ByteArrayOutputStream saida = new ByteArrayOutputStream();
InputStream template = this.getClass().getResourceAsStream("/templates/jett/fichaTecnica.xls");
Workbook workbook = transformer.transform(template, beans);) {
//ommited...
}
}
当生成 xls 时,会发生异常:
WARNING [javax.enterprise.resource.webcontainer.jsf.lifecycle] (default task-28) #{ProdutoManagedBean.createRelatorioFichaTecnica(row)}: net.sf.jett.exception.AttributeExpressionException: Expected a "java.util.Collection" for "items", got a "java.util.HashMap": "${operacaoResumo}".
所以我不理解这个错误,因为 Map 是正确的集合?那么为什么 jett 在 items = "$ {operacaoResumo}" 中没有识别出来呢?我根据网站上的链接创建了这个 forEach:http: //jett.sourceforge.net/tags/forEach.html