0

我正在尝试运行“Java EE 7 Development with WildFly”一书的示例。现在我面临以下问题/问题:

剧院信息.java:

@Model
public class TheatreInfo {
    ...
    @Produces
    @Named
    public Collection<Seat> getSeats() {
        return Lists.newArrayList(seats);
    }
    ...
}

座位.java:

@Dependent
@Named
public class Seat {
    ...
    public String getName() {
        return name;
    }
    ...
}

索引.xhtml:

<?xml version="1.0" encoding="UTF-8" ?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
    xmlns:f="http://xmlns.jcp.org/jsf/core"
    xmlns:h="http://xmlns.jcp.org/jsf/html"
    template="/WEB-INF/templates/default.xhtml">
    <ui:define name="content">

        <h1>TicketBooker Machine</h1>

        <h:form id="reg">

            <h:panelGrid columns="1" border="1" styleClass="smoke">

                <h:dataTable var="_seat" value="#{seats}" rendered="#{not empty seats}" styleClass="simpletablestyle">

                    ...

                </h:dataTable>

            </h:panelGrid>

        </h:form>

    </ui:define>
</ui:composition>

豆类.xml:

<beans xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/beans_1_1.xsd"
    version="1.1" bean-discovery-mode="all/annotated">
</beans>

这非常有效——我在我的网络浏览器中看到一张座位表——只要我在 beans.xml 中使用 bean-discovery-mode="all"。一旦我在 beans.xml 中使用 bean-discovery-mode="annotated" ,我在浏览器中就再也看不到座位表了,我看到一个空表,但没有发生错误。

在书中他们使用 bean-discovery-mode="all" 但我更喜欢查看哪些类是托管 bean,哪些不是。要使用 bean-discovery-mode="annotated" 我必须将 @Dependent 添加到某些类,但我无法解决名称生产者方法的问题。任何人都可以帮忙吗?

4

1 回答 1

0

嗯,如果我使用它就会运行

@Named
@RequestScoped
public class TheatreInfo {
...

介入

@Model
public class TheatreInfo {
...

不明白为什么@Named 和@RequestScoped 包含在@Model 原型中!?有人知道吗?

谢谢,多米尼克

于 2015-10-07T12:48:16.737 回答