尝试获取对象值时发生异常。当我们的应用程序只有 web 应用程序在耳中时它工作,但是当我们将带有 APP-INF/lib 的 ejb 包添加到 application.xml 时出现异常:javax.el.PropertyNotFoundException: The class 'java.lang.String' does not具有属性“类型”。在我的调查中:项目值是字符串,但不是 getItems 方法返回的对象。为什么会发生此异常。
感谢您的任何想法。
这是jsp页面的代码。
<div id="report_items">
<c:forEach items="#{repcatTree.items}" var="item">
<div style="padding-top:7px; padding-bottom:7px; padding-right:15px;">
<span class="report_item_category_class">
<h:commandLink rendered="#{item.type == 'category'}" action="#{item.onNodeClicked}"
styleClass="default_link">
<h:graphicImage url="/views/tree/images/folder_big.gif" />
<h:outputText value="#{item.attributes.FILE_NAME}" style="font-size:14px; font-weight:bold; padding-left:5px" />
</h:commandLink>
<h:commandLink rendered="#{item.type == 'report'}" styleClass="default_link"
action="action_report_run" title="#{item.cells['report_name'].toolTip}">
<h:graphicImage url="/icon?rdd_path=#{item.attributes.RDD_PATH}" />
<h:outputText value="#{item.cells['report_name'].display}"
style="font-size:14px; font-weight:bold; padding-left:5px" />
<f:param name="nodePath" value="#{item.attributes.RDD_PATH}" />
<f:param name="nodePrettyPath" value="#{item.attributes.CAT_PATH}" />
</h:commandLink>
</span>
</div>
</c:forEach>
</div>
这是我的课。我删除了不需要的代码部分。
public class RepcatTreeModel extends TreeModel implements Serializable {
public RepcatTreeModel() {
super();
}
public Collection getItems() {
items = new ArrayList();
items.addAll(getActiveNode().getChildren());
items.addAll(getTableModel().getRows());
Object[] _items = items.toArray();
Arrays.sort(_items, new Comparator() {
public int compare(Object o1, Object o2) {
int result = 0;
if (o1 instanceof TreeNodeModel && o2 instanceof TreeNodeModel) {
TreeNodeModel nodeA = (TreeNodeModel)o1;
TreeNodeModel nodeB = (TreeNodeModel)o2;
String strA = (String)nodeA.getAttributes().get(RepcatTreeModel.ATTR_NAME);
String strB = (String)nodeB.getAttributes().get(RepcatTreeModel.ATTR_NAME);
if (strB.compareToIgnoreCase(strA) < 0)
result = 1;
else
if (strB.compareToIgnoreCase(strA) > 0)
result = -1;
}
else
if (o1 instanceof RowModel && o2 instanceof RowModel) {
RowModel nodeA = (RowModel)o1;
RowModel nodeB = (RowModel)o2;
String strTmp = (String)nodeA.getAttributes().get(RepcatTreeModel.ROW_ATTR_RDD_PATH);
String strA = strTmp.substring(strTmp.lastIndexOf('/')+1);
strTmp = (String)nodeB.getAttributes().get(RepcatTreeModel.ROW_ATTR_RDD_PATH);
String strB = strTmp.substring(strTmp.lastIndexOf('/')+1);
if (strB.compareToIgnoreCase(strA) < 0)
result = 1;
else
if (strB.compareToIgnoreCase(strA) > 0)
result = -1;
}
return result;
}
});
items = new ArrayList(Arrays.asList(_items));
return items;
}
}