0

如题,如何使用 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-server 来启用 JAR 文件作为独立运行。但是,Javalite ActiveWeb 可能有办法做到这一点。

4

1 回答 1

0

您可以构建任意数量的不同类型的 JavaLite 项目,例如使用某些功能的独立项目:JavaLite HTTP、ActiveJDBC、JavaLite Async 等。此外,如果您想构建 Web 应用程序,还需要 ActiveWeb。

以下是 JavaLite 存储库中的示例列表:

活动JDBC:

活动网:

每个示例应用程序都有一个 README 文件,您可以阅读以了解示例的用途。

为了启动任何项目,只需克隆一个 repo,让它运行,然后根据自己的喜好开始修改它。

此外,请注意发布页面http://javalite.io/releases 并保持您的依赖项是最新的。

于 2018-05-21T17:04:50.447 回答