【发布时间】:2017-06-24 17:39:28
【问题描述】:
我在 xhtml 中遇到一个错误.. 代码是:
<h:form>
<h:panelGrid columns="2">
<h:outputLabel value="Name:" />
<h:inputText value="#{newAuctionWizard.auction.name}" />
<h:outputLabel value="Description:" />
<h:inputTextarea value="#{newAuctionWizard.auction.description}" />
<p:outputLabel for="category" value="Categories from which to pick:" />
<p:selectOneRadio id="category" value="#{newAuctionWizard.auction.category}"
layout="grid" columns="3">
<f:selectItems value="#{newAuctionWizard.auction.categories}"
var="c" itemLabel="#{category}" itemValue="#{category}"/>
</p:selectOneRadio>
<h:commandButton value="Cancel" action="#{newAuctionWizard.cancel()}" />
<h:commandButton value="Details" action="newAuctionDetails" />
</h:panelGrid>
包含此部分后出现错误:
<p:outputLabel for="category" value="Categories from which to pick:" />
<p:selectOneRadio id="category" value="#{newAuctionWizard.auction.category}"
layout="grid" columns="3">
<f:selectItems value="#{newAuctionWizard.auction.categories}" var="c"
itemLabel="#{category}" itemValue="#{category}"/>
</p:selectOneRadio>
我已经为 p 元素添加了命名空间,但仍然无法将它包含在 panelGrid 中。有人可以告诉我我做错了什么吗?错误是:
2017-02-07 14:52:12,275 ERROR [org.jboss.as.controller.management-operation] (DeploymentScanner-threads - 2) WFLYCTL0013: Operation ("deploy") failed - address: ([("deployment" => "auctioner-0.0.1-SNAPSHOT.war")]) - failure description: {"WFLYCTL0080: Failed services" => {"jboss.persistenceunit.\"auctioner-0.0.1-SNAPSHOT.war#auctionPersistenceUnit\"" => "org.jboss.msc.service.StartException in service jboss.persistenceunit.\"auctioner-0.0.1-SNAPSHOT.war#auctionPersistenceUnit\": javax.persistence.PersistenceException: [PersistenceUnit: auctionPersistenceUnit] Unable to build Hibernate SessionFactory
Caused by: javax.persistence.PersistenceException: [PersistenceUnit: auctionPersistenceUnit] Unable to build Hibernate SessionFactory
Caused by: org.hibernate.MappingException: Could not determine type for: java.util.List, at table: AUCTION, for columns: [org.hibernate.mapping.Column(categories)]"}}
【问题讨论】:
-
您的标题表明您收到“错误”(标题太笼统),但您甚至没有在文本中发布 WHAT 错误。这样一来,就不可能提供帮助(并且在这里可疑的支持)
-
错误是什么??
-
我现在已经完成了编辑......对不起:)
-
您在价值中引用了一个类别列表,而这在拍卖中不存在,请参阅我的答案。
-
他们正在拍卖中......私有列表
+ getter 和 setter
标签: forms jsf primefaces xhtml panelgrid