MCPcopy Create free account
hub / github.com/bkhtmltopdf/bkhtmltopdf / Application

Class Application

src/main/java/com/bkhtmltopdf/Application.java:7–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5import org.springframework.context.annotation.FullyQualifiedAnnotationBeanNameGenerator;
6
7@SpringBootApplication(nameGenerator = FullyQualifiedAnnotationBeanNameGenerator.class)
8public class Application {
9 public static void main(String[] args) {
10 new SpringApplicationBuilder()
11 .headless(Boolean.getBoolean("java.awt.headless"))
12 .main(Application.class)
13 .sources(Application.class)
14 .run(args);
15 }
16}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected