質問されたように、Javalite フレームワークを使用して実行可能な JAR を構築する方法は? Javalite には既知のエントリ ポイント/メイン クラスがありません。いくつかの例を閲覧しましたが、手がかりが見つかりませんでした。
この jar は、java -jar コマンドを使用してサーバー上でスタンドアロンとして実行されます。
pom.xml ファイルのプラグインのスニペットの下
包装
<modelVersion>4.0.0</modelVersion>
<groupId>org.javalite</groupId>
<artifactId>activeweb-simple</artifactId>
<packaging>jar</packaging>
<version>1.1-SNAPSHOT</version>
<name>ActiveWeb Example WebApp</name>
プラグイン
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<!-- Jar file entry point -->
<mainClass>com.company.Application</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
そしてApplication.java、
public class Application {
public static void main(String[] args) throws Exception {
String webappDirLocation = "src/main/webapp/";
Tomcat tomcat = new Tomcat();
String webPort = System.getenv("PORT");
if(webPort == null || webPort.isEmpty()) {
webPort = "8081";
}
tomcat.setPort(Integer.valueOf(webPort));
StandardContext ctx = (StandardContext) tomcat.addWebapp("/", new File(webappDirLocation).getAbsolutePath());
System.out.println("configuring app with basedir: " + new File("./" + webappDirLocation).getAbsolutePath());
File additionWebInfClasses = new File("target/classes");
WebResourceRoot resources = new StandardRoot(ctx);
resources.addPreResources(new DirResourceSet(resources, "/WEB-INF/classes",
additionWebInfClasses.getAbsolutePath(), "/"));
ctx.setResources(resources);
tomcat.start();
tomcat.getServer().await();
}
}
注 : 現在、Tomcat を埋め込み http サーバーとして使用して、JAR ファイルをスタンドアロンとして実行できるようにしています。しかし、Javalite ActiveWeb にはおそらくこれに対する方法があります。