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

org.inigma.shared.SpringApplication Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
package org.inigma.shared;

import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * Simple Spring Based initialization of an application.
 * 
 * @author Sejal Patel
 */
public class SpringApplication {
    public static void main(String[] args) {
        ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(args);
        context.registerShutdownHook();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy