OpenShift Tomcat 7(JBoss EWS 2.0)无法解析javax.servlet

时间:2013-09-26 01:11:19

标签: tomcat servlets jboss openshift

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

  

javax.servlet无法解析

我知道这对Java EE人员来说可能很简单,但我的问题是,对于OpenShift,解决方案是否相同。我们可以将apache tomcat jar复制到项目文件夹吗?我觉得JBoss Develper 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>

2 个答案:

答案 0 :(得分:6)

artifactId与通常用于引用对mavenCentral的依赖性的内容不同 对于OpenShift的回购使用:

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>

答案 1 :(得分:3)

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

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