`
sundoctor
  • 浏览: 326810 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

One-JAR Quick Start

    博客分类:
  • Java
 
阅读更多
Quick Start
There are various approaches to getting started with One-JAR. Ant users will find the "Application Generator Approach" most useful, Maven users the "Maven Approach", command-line tool users may prefer the "Command Line Approach".
Application Generator Approach
This approach provides you with a complete Eclipse/Ant application directory, which you can use as a starting point for your own One-JAR application. The application generator is driven by a template built into the one-jar-appgen.jar file (see one-jar-appgen)

    Download one-jar-appgen-0.97.jar
    Generate application, build, and run it.

    $ java -jar one-jar-appgen-0.97.jar

    Enter project path (project name is last segment): c:/tmp/test-one-jar
    Enter java package name: com.example.onejar

    $ cd c:/tmp/test-one-jar
    $ ant
    $ cd build
    $ java -jar test-one-jar.jar

    test_one_jar main entry point, args=[]
    test_one_jar main is running
    test_one_jar OK.

Add source code to the src directory, library jars to the lib directory, and rebuild.
Command-Line Approach
The use of Ant is not required: a One-JAR archive is simple to build using just the jar tool using the following steps.

    Create a working directory to act as the "root" of the one-jar with main, lib sub-directories.
    Copy your main application jar file into root/main and library dependencies into root/lib
    Unjar the one-jar-boot-0.97.jar file into the root directory, and delete the "src" tree
    Edit the boot-manifest.mf file and add a new line: One-Jar-Main-Class: your-main-class
    cd root; jar -cvfm ../one-jar.jar boot-manifest.mf .

You should end up with a One-JAR archive which mirrors the "root" tree:

one-jar.jar
|  META-INF/MANIFEST.MF
|  .version
|  com/simontuffs/onejar
   |  Boot.class, ...etc.
|  doc/one-jar-license.txt
|  main/main.jar
|  lib/a.jar ...etc.

Thats it: no code to write, just a directory tree, some copy operations, and a file edit. The One-JAR classloader discovers the libraries and main code based on their position in the archive, and ignores any other Jar files should you need to embed archives which should not be on the classpath. Embedding the one-jar-license.txt ensures compliance with the BSD-style license.
Maven Approach
There is a Maven2 plugin for One-JAR. It is easy to use for Maven projects. Please consult the documentation here: http://code.google.com/p/onejar-maven-plugin/
Ant Taskdef Approach
Detailed use of the One-JAR Ant Taskdef is discussed here. Note that the one-jar-appgen approach uses the Ant taskdef.
SDK Approach
Use of the (deprecated) SDK is discussed here
分享到:
评论

相关推荐

    apollo-quick-start-1.6.1.zip

    "apollo-quick-start-1.6.1.zip" 是 Apollo 的快速启动包,包含了启动和演示 Apollo 服务所需的基本组件。 1. **Apollo 简介** Apollo 提供了一种声明式的配置管理方式,允许开发者在不修改代码的情况下,通过配置...

    apollo-quick-start-2.2.0.zip

    `apollo-quick-start-2.2.0.zip` 是Apollo的一个快速入门包,版本号为2.2.0,用于帮助开发者快速理解和部署Apollo。 该压缩包中的主要文件包括: 1. `apollo-all-in-one.jar`:这是Apollo的核心组件,包含了配置...

    apollo-quick-start-2.1.0.zip

    本压缩包"apollo-quick-start-2.1.0.zip"提供了一个快速入门的环境,帮助用户快速了解和使用Apollo。 首先,我们来看看压缩包内的主要文件: 1. **apollo-all-in-one.jar**:这是Apollo的全量启动包,包含了服务端...

    apollo-quick-start-1.9.0.zip

    在本压缩包"apollo-quick-start-1.9.0.zip"中,包含了快速启动Apollo所需的一些核心组件和示例,以下是其中各文件的作用及相关的知识点: 1. **apollo-all-in-one.jar**:这是Apollo的全量打包文件,包含了服务端...

    apollo-quick-start-2.0.1.zip

    标题中的"apollo-quick-start-2.0.1.zip"是一个快速入门的压缩包,包含了版本2.0.1的Apollo配置中心的基础运行环境。 该压缩包中的主要文件有: 1. `apollo-all-in-one.jar`:这是Apollo的核心组件,集成了配置中心...

    apollo-quick-start-1.9.2.zip

    在"apollo-quick-start-1.9.2.zip"这个压缩包中,包含了快速启动Apollo所需的一些核心组件和示例,便于开发者进行快速部署和测试。 1. **Apollo核心组件**: Apollo主要由三部分组成:`client`、`service`和`...

Global site tag (gtag.js) - Google Analytics