如有疑问,如何使用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可能有办法解决这个问题。
答案 0 :(得分:0)
您可以构建任意数量的不同类型的JavaLite项目,例如使用某些功能的独立项目:JavaLite HTTP,ActiveJDBC,JavaLite Async等。此外,如果您要构建Web应用程序,还需要ActiveWeb 。
以下是JavaLite仓库中的示例列表:
ActiveJDBC:
ActiveWeb:
每个示例应用程序都有一个README文件,您可以阅读该文件以查看示例的用途。
为了启动任何项目,只需克隆一个repo,让它运行然后开始根据自己的喜好进行修改。
此外,请注意版本页面http://javalite.io/releases并确保您的相关性保持最新。