我使用 primefaces 自动完成并正确搜索。当我单击 Save 时,显示此错误消息。
/entryPages/usDistributorDetails/Create.xhtml @95,71 itemLabel="#{territory.territoryName}": Property 'territoryName' not found on type java.lang.String
我的 xhtml 代码:
<p:autoComplete id="territoryId11"
value="#{usDistributorDetailsController.selected.territoryId}"
completeMethod="#{usDistributorDetailsController.completeTerritory}"
var="territory" itemLabel="#{territory.territoryName}"
itemValue="#{territory.territoryId}"
size="37"
style="width: 264px" >
</p:autoComplete>
我的 Java 代码:
public List<UsTerritory> completeTerritory(String query11) {
List<UsTerritory> results = new ArrayList<UsTerritory>();
List<UsTerritory> territoryListA = getJpaTerritoryController().findUsTerritoryEntities();
for (UsTerritory abc : territoryListA) {
if (abc.getTerritoryName().startsWith(query11)) {
results.add(abc);
}
}
return results;
}