AngularJS не инициализирован - учебник по AngularFaces

Я пытаюсь следовать инструкциям для учебника AngularFaces на их веб-сайте здесь: https://angularfaces.com/index.html

Однако по завершении шага 01 моя веб-страница выглядит следующим образом:

И это должно выглядеть так:

Мой src / main / webapp/index.xhtml выглядит так:

<f:view xmlns="http://www.w3.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:prime="http://primefaces.org/ui"
    xmlns:ng="http://angularjs.org" 
    >
    <h:head>
        <title>AngularFaces 2.0 tutorial step 00 - Introducing
            AngularTetris</title>
    </h:head>
    <h:body style="width:1000px" ng-controller="LabelDemoController"
        ng-app="AngularFacesExamples" >

        <h:form id="angular">
            <prime:panel header="Contact Info">
                <prime:panelGrid columns="3">
                    <prime:inputText value="#{customer.lastName}" />
                    <prime:inputText value="#{customer.firstName}" />
                    <prime:inputText value="#{customer.dateOfBirth}" />
                    <prime:inputText value="#{customer.emailAddress}" />
                    <prime:inputText value="#{customer.iAgreeToTheTermsAndConditions}" />
                </prime:panelGrid>
                <prime:commandButton value="save" update="angular"
                    action="#{customer.save}" />


            </prime:panel>
        </h:form>

    </h:body>
</f:view>

Мой файл pom.xml выглядит так:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<groupId>de.beyondjava.angularFaces</groupId>
<artifactId>angularfaces-tutorial-step-00</artifactId>
<packaging>war</packaging>
<version>2.0.0</version>
<name>angularfaces-2.0-tutorial-step-00</name>
<description>AngularFaces make JSF programming simpler. In particular, it adds AngularJS to JSF.</description>
<url>http://www.beyondjava.net</url>
<licenses>
    <license>
        <name>GNU General Public License (GPL) version 3.0</name>
        <url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
    </license>
</licenses>
<developers>
    <developer>
        <name>Stephan Rauh</name>
        <email>webmaster1@beyondjava.de</email>
        <organization>BeyondJava.net</organization>
        <organizationUrl>http://www.beyondjava.net</organizationUrl>
    </developer>
</developers>
<scm>
    <connection>scm:git:git@github.com:stephanrauh/AngularFaces.git</connection>
    <developerConnection>scm:git:git@github.com:stephanrauh/AngularFaces.git</developerConnection>
    <url>git@github.com:stephanrauh/AngularFaces.git</url>
</scm>
<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.6</maven.compiler.source>
    <maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
    <dependency>
        <groupId>de.beyondjava</groupId>
        <artifactId>angularFaces-core</artifactId>
        <version>2.0.0</version>
    </dependency>
</dependencies>
<profiles>
    <profile>
        <id>Mojarra 2.2.7</id>
        <activation>
            <activeByDefault>true</activeByDefault>
        </activation>
        <dependencies>
            <dependency>
                <groupId>de.beyondjava</groupId>
                <artifactId>angularFaces-core</artifactId>
                <version>2.0.0</version>
            </dependency>
            <dependency>
                <groupId>com.sun.faces</groupId>
                <artifactId>jsf-api</artifactId>
                <version>2.2.7</version>
                <scope>compile</scope>
            </dependency>
            <dependency>
                <groupId>org.primefaces</groupId>
                <artifactId>primefaces</artifactId>
                <version>6.0</version>
            </dependency>
            <dependency>
                <groupId>com.sun.faces</groupId>
                <artifactId>jsf-impl</artifactId>
                <version>2.2.7</version>
                <scope>compile</scope>
            </dependency>
        </dependencies>
    </profile>
    <profile>
        <id>MyFaces 2.2.4</id>
        <activation>
            <activeByDefault>false</activeByDefault>
        </activation>
        <dependencies>
            <dependency>
                <groupId>org.apache.myfaces.core</groupId>
                <artifactId>myfaces-api</artifactId>
                <version>2.2.4</version>
            </dependency>
            <dependency>
                <groupId>org.apache.myfaces.core</groupId>
                <artifactId>myfaces-impl</artifactId>
                <version>2.2.4</version>
            </dependency>
        </dependencies>
    </profile>
</profiles>

<build>
    <plugins>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <outputDirectory>dist</outputDirectory>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
                <execution>
                    <id>attach-sources</id>
                    <goals>
                        <goal>jar-no-fork</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <executions>
                <execution>
                    <id>attach-javadocs</id>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.5</version>
            <executions>
                <execution>
                    <id>sign-artifacts</id>
                    <phase>verify</phase>
                    <goals>
                        <goal>sign</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

И тогда у меня есть мой Main.js здесь:

angular.module("AngularFacesExamples", [ "angularfaces" ]);

Я чувствую, что нахожусь в тупике и не уверен, что мне нужно добавить или изменить для инициализации AngularJS. Я следовал нескольким учебникам, чтобы инициализировать AngularJS, но, очевидно, я что-то не так делаю.

Я думаю, что-то не хватает в учебнике, но я не уверен, что. Может ли кто-нибудь указать мне правильное направление?

0 ответов

Другие вопросы по тегам