Package com.example.demo

Source Code of com.example.demo.DemoMain

package com.example.demo;

import java.io.File;

import org.apache.catalina.Globals;
import org.apache.catalina.startup.Catalina;

/**
*
* Sorry by this demo is not complete!
*
*/
public class DemoMain {
  public static void main(String[] args) {
    String home = new File("tomcat").getAbsolutePath();
    System.setProperty(Globals.CATALINA_HOME_PROP, home);
    System.setProperty(Globals.CATALINA_BASE_PROP, home);
    Catalina catalina = new Catalina();
    catalina.start();
  }
}
TOP

Related Classes of com.example.demo.DemoMain

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.