3

我正在为 OpenShift PaaS 构建第一个项目。决定使用 java 所以下载了 JBoss Developer Studio 并创建了第一个项目。Openshift 已经创建了模板,所以它应该运行。但是在开发者工作室中,出现错误:

javax.servlet 无法解析

我知道这对于 Java EE 人来说可能很简单,但我的问题是对于 OpenShift,解决方案是否相同。我们可以将一个 apache tomcat jar 复制到项目文件夹吗?我猜 JBoss Developer Studio 不完全是 Eclipse?所以我添加了jar,错误消失了。然后是这个警告:

Classpath entry .. tomecat-7.0.42/lib/servlet-api.jar 将不会被导出或发布 ClassNotFoundException 可能会导致。

问题

错误和警告消失的正确方法是什么?Openshift 是否应该已经有了 jar,因为它是 PaaS,而不是 IaaS。我们是否只需要构建 jar,但这个 jar 不会成为 Web 应用程序的一部分?

信息

JBoss Developer Studio 确实有 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>tom</groupId>
    <artifactId>tom</artifactId>
    <packaging>war</packaging>
    <version>1.0</version>
    <name>tom</name>
    <repositories>
        <repository>
            <id>eap</id>
            <url>http://maven.repository.redhat.com/techpreview/all</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>eap</id>
            <url>http://maven.repository.redhat.com/techpreview/all</url>
            <releases>
                <enabled>true</enabled>
            </releases>
            <snapshots>
                <enabled>true</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>
    <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>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>9.2-1003-jdbc4</version>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>5.1.25</version>
        </dependency>           
    </dependencies>
    <profiles>
        <profile>
            <!-- When built in OpenShift the 'openshift' profile will be used when 
                invoking mvn. -->
            <!-- Use this profile for any OpenShift specific customization your app 
                will need. -->
            <!-- By default that is to put the resulting archive into the 'webapps' 
                folder. -->
            <!-- http://maven.apache.org/guides/mini/guide-building-for-different-environments.html -->
            <id>openshift</id>
            <build>
                <finalName>tom</finalName>
                <plugins>
                    <plugin>
                        <artifactId>maven-war-plugin</artifactId>
                        <version>2.1.1</version>
                        <configuration>
                            <outputDirectory>webapps</outputDirectory>
                            <warName>ROOT</warName>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>
4

2 回答 2

6

artifactId 与通常用于引用对 mavenCentral 的依赖项不同。
对于 OpenShift 的存储库,请使用:

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>
于 2013-10-02T17:20:42.567 回答
3

似乎默认的 pom.xml 对 servlet-api 没有正确的依赖关系。按照此页面中的指南,您可能会发现它有效

https://www.openshift.com/blogs/multipart-forms-and-file-uploads-with-tomcat-7

于 2013-10-01T01:18:07.813 回答