001package io.jstach.opt.spring.example; 002 003import org.springframework.boot.SpringApplication; 004import org.springframework.boot.autoconfigure.SpringBootApplication; 005 006/** 007 * Entry point. 008 * 009 * @author agentgt 010 */ 011@SpringBootApplication 012public class App { 013 014 /** 015 * To placate JDK 18 javadoc. 016 */ 017 public App() { 018 } 019 020 /** 021 * Canonical entry point that will launch Spring 022 * @param args the command line args 023 */ 024 public static void main(String[] args) { 025 SpringApplication.run(App.class, args); 026 } 027 028}