在Linux上创建Java守护程序服务的工具

时间:2009-08-21 10:51:14

标签: java linux maven-2 maven-plugin daemon

创建可以在Linux上使用“service”运行的Java应用程序的最佳方法是什么?我打算使用JSW可用的here,但是不能使用许可证(许可证是GPL,或者据我所知,它需要花钱)。我需要一个apache风格的许可证。

我正在使用maven进行构建,所以如果可以使用maven插件创建服务会很棒,但任何其他建议都会很棒。

我见过Apache Commons Daemon,是否有maven插件?文档看起来很少,所以这个例子很好......

由于

3 个答案:

答案 0 :(得分:20)

Linux上的服务只是启动后台进程的shell脚本。查看/etc/init.d - 您可以在文本编辑器中打开文件。您所需要的只是一个bash脚本,它以适当的方式响应参数startstop(例如。start将启动您的服务并将进程ID记录在已知位置,{ {1}}将使用您创建的文件中的PID终止进程,然后将其放在stop中。

查看Init ScriptsAn introduction to services, runlevels, and rc.d scripts

答案 1 :(得分:13)

据我所知,Apache Daemon或Akuma没有Maven插件。虽然您可以尝试使用maven-exec-plugin在Maven构建中调用它们。


就贵公司对使用GPL许可产品的预订而言,值得一读的是使用的含义。它不像公司所担心的那样恶毒。这是一个interpretation of the GPL。它当然在法律上没有任何重要性(可能不正确或先例支持,我不是律师),但可能足以让您开始与您的法律人员进行对话。

从引用页面:

  

简单地将受版权保护的作品与其他作品相结合并不会产生衍生作品。必须以某种方式修改原始版权作品。由此产生的衍生作品本身必须“代表作者身份的原创作品”。因此,如果被许可人不修改原始的GPL许可程序,而只是运行它,他就不会创建衍生作品。


我认为Appassembler Maven plugin可以满足您的需求(尽管它确实创建了JSW包装器)。它创建一个shell脚本(和一个bat文件),并将所有应用程序jar收集到一个目录中。可以选择configured来创建基于JSW的守护进程配置。

这是一个示例配置,它将在target / appassembler文件夹中生成独立应用程序,并在target / appassembler / jsw / myApp目录中生成JSW包装器文件。请注意,汇编目标绑定到集成测试阶段,以确保创建项目的jar。要生成输出 mvn verify 或仅生成服务包装器,请运行 mvn package

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>appassembler-maven-plugin</artifactId>
    <version>1.0</version>
    <executions>
      <execution>
        <id>assemble-standalone</id>
        <phase>integration-test</phase>
        <goals>
          <goal>assemble</goal>
        </goals>
        <configuration>
          <programs>
            <program>
              <mainClass>name.seller.rich.MyMainClass</mainClass>
              <name>myShellScript</name>
            </program>
          </programs>
          <platforms>
            <platform>windows</platform>
            <platform>unix</platform>
          </platforms>
          <!--collect all jars into the lib directory-->
          <repositoryLayout>flat</repositoryLayout>
          <repositoryName>lib</repositoryName>
        </configuration>
      </execution>
      <execution>
        <id>generate-jsw-scripts</id>
        <phase>package</phase>
        <goals>
          <goal>generate-daemons</goal>
        </goals>
        <configuration>
          <!--declare the JSW config -->
          <daemons>
            <daemon>
              <id>myApp</id>
              <mainClass>name.seller.rich.MyMainClass</mainClass>
              <commandLineArguments>
                <commandLineArgument>start</commandLineArgument>
              </commandLineArguments>
              <platforms>
                <platform>jsw</platform>
              </platforms>              
            </daemon>
          </daemons>
          <target>${project.build.directory}/appassembler</target>
        </configuration>
      </execution>
    </executions>
  </plugin>

作为参考,生成的文件如下:

myApp\bin\myApp
myApp\bin\myApp.bat
myApp\bin\wrapper-linux-x86-32
myApp\bin\wrapper-macosx-universal-32
myApp\bin\wrapper-solaris-x86-32
myApp\bin\wrapper-windows-x86-32.exe
myApp\conf\wrapper.conf
myApp\lib\libwrapper-linux-x86-32.so
myApp\lib\libwrapper-macosx-universal-32.jnilib
myApp\lib\libwrapper-solaris-x86-32.so
myApp\lib\wrapper-windows-x86-32.dll
myApp\lib\wrapper.jar

答案 2 :(得分:3)

您可以查看以下项目。