blob: a590c2d1975e60653e14c8f34dc11e5032c14020 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.juick.components;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.WebApplicationType;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class PushServer {
public static void main(String[] args) {
SpringApplication app = new SpringApplication(PushServer.class);
app.setWebApplicationType(WebApplicationType.NONE);
app.run(args);
}
}
|