複数のモジュールを含むプロジェクトがあります。
そのうちの 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