0

我正在使用 primefaces 3.3 和 JSF 2.0。而下面pom的结构,当我生成war时,只在tomcat 7.0.39上运行(工作)。我想知道我需要更改 pom 以供在 JBoss EAP 5.1 中运行的战争。

错误:19:19:53,125 SEVERE [config] 部署期间的严重错误:com.sun.faces.config.ConfigurationException:未正确配置工厂“javax.faces.context.ExternalContextFactory”。在 com.sun.faces.config.processor.FactoryConfigProcessor.verifyFactoriesExist(FactoryConfigProcessor.java:305) 在

  • 下面生成的 O 战争在 JBoss EAP 5.1 中不起作用
<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.mkyong.core</groupId>
<artifactId>OtimizacaoProcessoInterno</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>

<name>OtimizacaoProcessoInterno</name>
<url>http://maven.apache.org</url>

<dependencies>

    <!-- PrimeFaces -->
    <dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>3.3</version>
    </dependency>

    <!-- JSF -->
    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-api</artifactId>
        <version>2.1.11</version>
    </dependency>
    <dependency>
        <groupId>com.sun.faces</groupId>
        <artifactId>jsf-impl</artifactId>
        <version>2.1.11</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>

    <!-- EL -->
    <dependency>
        <groupId>org.glassfish.web</groupId>
        <artifactId>el-impl</artifactId>
        <version>2.2</version>
    </dependency>

</dependencies>
<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-eclipse-plugin</artifactId>
            <configuration>
               <wtpversion>2.0</wtpversion>
            </configuration>
        </plugin>
    </plugins>
</build>

4

1 回答 1

0

您可以将您的 Maven 模块打包为 ear。因此将您的包装更改为

<packaging>ear</packaging>

如果你想自定义你的 ear 文件,你可以使用maven-ear-plugin

于 2013-04-18T08:56:00.507 回答