mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2026-03-22 07:39:21 +00:00
Initial Drop of Opensync Gateway for Cloud. Still non-functional in several areas
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package com.telecominfraproject.wlan.opensync.integration;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
import org.springframework.context.annotation.ComponentScan;
|
||||
|
||||
@ComponentScan(basePackages = { "com.telecominfraproject.wlan" })
|
||||
@EnableAutoConfiguration
|
||||
public class OpenSyncGatewayCloudProcess {
|
||||
|
||||
/**
|
||||
* <br>{@code java -Dssl.props=file:./ssl.properties -Dlogback.configurationFile=file:./logback.xml -jar ./opensync-experiment-0.0.1-SNAPSHOT.jar}
|
||||
*
|
||||
* @param args
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
ConfigurableApplicationContext applicationContext = SpringApplication.run(OpenSyncGatewayCloudProcess.class, args);
|
||||
// signal start of the application context
|
||||
applicationContext.start();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user