0

我正在尝试使用 jboss 应用程序服务器在 jboss dev studio 中设置我的第一个 maven webapp。我选择这些技术的原因是因为这是我们在工作中使用的。我是一名刚毕业的学生,​​正试图通过在家做事来领先于游戏。我创建了一个 maven-webapp 并将其导入 jboss dev studio。我从http://www.mkyong.com/jsf2/jsf-2-0-hello-world-example/抓取了一个示例 pom.xml 和 web.xml

似乎我的服务器正在使用正确的文件部署 war 文件,并且服务器正确启动,但我无法访问示例 .xhtml 文件。

当我http://localhost:8080/成功访问它时,会出现jboss portal,但我不知道如何访问该index.xhtml文件。

这是我的文件:

web.xml

    <?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" 
        xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
    http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">

    <display-name>myProject</display-name>

    <!-- Change to "Production" when you are ready to deploy -->
    <context-param>
        <param-name>javax.faces.PROJECT_STAGE</param-name>
        <param-value>Development</param-value>
    </context-param>

    <!-- Welcome page -->
    <welcome-file-list>
        <welcome-file>index.xhtml</welcome-file>
    </welcome-file-list>

    <!-- JSF mapping -->
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <!-- Map these files with JSF -->
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.xhtml</url-pattern>
    </servlet-mapping>

</web-app>

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>com.myProject</groupId>
  <artifactId>myProject-web</artifactId>
  <packaging>war</packaging>
  <version>1.0</version>
  <name>myProject-web Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>

        <dependency>
            <groupId>com.sun.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>2.1.7</version>
        </dependency>
        <dependency>
            <groupId>com.sun.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>2.1.7</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
        </dependency>

        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
        </dependency>
                <!-- Tomcat 6 need this -->
        <dependency>
            <groupId>com.sun.el</groupId>
            <artifactId>el-ri</artifactId>
            <version>1.0</version>
        </dependency>

    </dependencies>

    <build>
        <finalName>myProject-web</finalName>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

索引.xhtml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://java.sun.com/jsf/core"      
      xmlns:h="http://java.sun.com/jsf/html">

    <h:head>
        <title>JSF 2.0 Hello World</title>
    </h:head>
    <h:body>
        <h3>JSF 2.0 Hello World Example - hello.xhtml</h3>
    </h:body>
</html>
4

3 回答 3

4

web-app roothttp://<server_name>:<port>/<app-context-root>/通常是 app-context-root 将与没有 .war 扩展名的 war-file-name 相同,因此对于您的应用程序,web-app roothttp://localhost:8080/myProject-web/假设 war 文件名为 myProject-web.war。如教程中所述,您可以通过以下 URL 访问您的页面。

http://localhost:8080/myProject-web/index.jsf
http://localhost:8080/myProject-web/index.faces
http://localhost:8080/myProject-web/index.xhtml

因为您已将 映射Faces Servlet*.jsf, *.faces, *.xhtml

不要映射到Faces Servlet/*因为所有请求都会经过 JSF 生命周期。

于 2013-05-21T01:14:54.913 回答
0

我改变了将war文件部署到jboss的方式。我将其更改为部署到 jboss 部署文件夹。然后我根据站点制作了一个“最小”的 web.xml 和 faces-config.xml 文件:http: //docs.jboss.org/jbossas/6/JSF_Guide/en-US/html_single/#web-xml

现在我有一个在 jboss 上运行的基础 maven jsf webapp。我会考虑优化一切。

我需要访问的网址是:

http://localhost:8080/collegecellar-web/index.xhtml
于 2013-05-21T02:18:45.057 回答
0

我使用具有以下设置的相同 MyKong JSF 应用程序:

在 web.xml

<servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

在 pom.xml

<dependencies>
  <dependency>
    <groupId>javax.faces</groupId>
    <artifactId>jsf-api</artifactId>
    <version>2.0</version>
    <scope>provided</scope>
  </dependency>
</dependencies>
<repositories>
  <repository>
    <id>java.net.m2</id>
    <name>java.net m2 repo</name>
    <url>http://download.java.net/maven/2</url>
  </repository>
</repositories>

和网址:

http://localhost:8080/JavaServerFaces/
于 2013-07-23T02:50:51.083 回答