5

複数のモジュールを含むプロジェクトがあります。

そのうちの 2 つは war ファイルを生成します。

  • 1 つの war ファイルは REST アプリケーションであり、いくつかのリソースを提供します。

  • その他の war ファイルは、REST バックエンドと対話するための Angular JS Web アプリケーション (静的コンテンツのみ) です。

デモ目的で、両方の war ファイルを非常に簡単に展開したいと思いますmvn jetty:run

開発目的で、IDE (Eclipse Servers View など) からデプロイしたいと思います。

サーバーを起動し、war ファイルを配置フォルダーにコピーして、単一の Jetty サーバー (v9.0.7.v20131107) に手動で配置すると、すべてが表示されます。

両方の war ファイルで桟橋を起動すると、mvn jetty:runデプロイされますが、どういうわけか REST リソースがデプロイされません。

私はJersey 2を使用しています。手動でデプロイすると、次のようなログメッセージが表示されます

Nov 14, 2013 10:44:37 PM org.glassfish.jersey.server.ApplicationHandler initialize INFO: Initiating Jersey application, version Jersey: 2.4 2013-10-24 18:25:49...

ただし、このメッセージは で起動すると表示されませんmvn jetty:run。したがって、Jersey は機能しないと思います。

Dependency-Injection には、Spring を使用します。


これは、jetty-maven-plugin 構成を持つ /pom.xml の親 pom です。

<project ...>
...
<build>
    <plugins>
        <groupId>org.eclipse.jetty</groupId>
        <artifactId>jetty-maven-plugin</artifactId>
        <version>9.0.7.v20131107</version>
        <configuration>
            <scanIntervalSeconds>2</scanIntervalSeconds>
            <contextHandlers>
                <contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext">
                    <war>module1/target/module1-${project-version}.war</war>
                    <contextPath>/module1</contextPath>
                </contextHandler>
                <contextHandler implementation="org.eclipse.jetty.webapp.WebAppContext">
                    <war>module2/target/module2-${project.version}.war</war>
                    <contextPath>/module2/contextPath>
                </contextHandler>
            </contextHandlers>
        </configuration>
    </plugins>
</build>
...
</project>

これは、module1 (REST モジュール) の pom です。

    <parent>
        ...
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <artifactId>module1</artifactId>
    <packaging>war</packaging>

    <dependencies>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-web</artifactId>
            <springVersion>3.1.4.RELEASE</springversion>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.containers</groupId>
            <artifactId>jersey-container-servlet</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.ext</groupId>
            <artifactId>jersey-spring3</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-moxy</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>org.glassfish.jersey.media</groupId>
            <artifactId>jersey-media-multipart</artifactId>
            <version>2.4</version>
        </dependency>

        <!-- Dependencies to internal modules -->
        ...
        <!-- Depenencies to internal modules END -->

    </dependencies>
</project>

これは、module1 の web.xml です。

<web-app ...
     version="3.0">

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>WEB-INF/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
</web-app>

これは、module1 の applicationContext.xml です。

<beans ...>

    <context:annotation-config/>
    <context:component-scan base-package="com.stackoverflow.zip"/>
    <aop:aspectj-autoproxy/>
</beans>

これは、module1 の Module1Application クラスです。

import org.glassfish.jersey.media.multipart.MultiPartFeature;
import javax.ws.rs.ApplicationPath;
import javax.ws.rs.core.Application;
import java.util.HashSet;
import java.util.Set;


@ApplicationPath("/rest")
public class Module1Application extends Application {

    @Override
    public Set<Class<?>> getClasses() {
        Set<Class<?>> classes = new HashSet<Class<?>>();
        classes.add(Resource1.class);
        classes.add(Resource2.class);
        classes.add(MultiPartFeature.class);
        return classes;
    }
}

これは、module2 (AngularJS アプリ) の pom です。 非常に軽い :)

<project ...>

    <parent>
        ...
    </parent>   
    ...
    <modelVersion>4.0.0</modelVersion>
    <artifactId>module2</artifactId>
    <packaging>war</packaging>
</project>

で実行しているときにジャージーアプリケーションがインスタンス化されず、mvn jetty:run手動で実行するとインスタンス化されない理由を知っていますか?

このトピックに関するご意見をお待ちしております。

よろしくお願いします - zip

4

2 に答える 2

0

javax.servlet のバージョンは2.5pom.xml にありますが3.0、web.xml にあります。3.0pom.xml でアップグレードしてみてください。IDE がサーブレット 3.0 を提供する可能性はありますか?


また、Jetty は javax.servlet コンテナを提供しているので、Servlet Api を で提供されているスコープに入れてみてくださいpom.xml。このようなもの:

  <dependency>
     <groupId>javax.servlet</groupId>
     <artifactId>javax.servlet-api</artifactId>
     <version>3.0.1</version>
     <!-- http://stackoverflow.com/a/15601606 http://maven.apache.org/guides/introduction/introduction-to-dependency-mechanism.html#Dependency_Scope -->
     <!-- This allows us to compile the application locally but does not include the jar in the package step -->
     <scope>provided</scope>
  </dependency>

<load-on-startup>1</load-on-startup>に要素を追加したい可能性がありますweb.xmlhttp://tutorials.jenkov.com/java-servlets/web-xml.html#load-on-startupをチェックしてください

それはチュートリアル全体がかなり良いです。

免責事項: アプリケーションのブートストラップを支援するために Spring の依存関係が何をしているのか、私はよく知りません。いつでも別のブランチの依存関係を削除して、実行中にそれらを追加し直すことができます

于 2013-11-18T15:25:55.820 に答える