All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rzo.yajsw.boot.WrapperExeBooter Maven / Gradle / Ivy

Go to download

YAJSW is a java centric implementation of the java service wrapper by tanuki (JSW). It aims at being mostly configuration compliant with the original. It should therefore be easy to switch from JSW to YAJSW.

The newest version!
/* This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 * 

* This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.rzo.yajsw.boot; import java.io.File; import java.lang.reflect.Method; import java.net.URLClassLoader; public class WrapperExeBooter { /** * The main method. Loads the libs required by YAJSW and starts * WrapperExe.main * * @param args * the arguments */ public static void main(String[] args) { if (System.getProperty("java.io.tmpdir") != null) { File tmp = new File(System.getProperty("java.io.tmpdir")); if (!tmp.exists()) tmp.mkdirs(); } URLClassLoader cl = WrapperLoader.getWrapperClassLoader(); Thread.currentThread().setContextClassLoader(cl); try { Class cls = Class.forName("org.rzo.yajsw.WrapperExe", true, cl); Method mainMethod = cls.getDeclaredMethod("main", new Class[] { String[].class }); mainMethod.invoke(null, new Object[] { args }); } catch (Exception e) { e.printStackTrace(); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy