mirror of
https://github.com/Estom/notes.git
synced 2026-02-10 22:06:00 +08:00
19 lines
360 B
Java
19 lines
360 B
Java
package org.example;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
|
|
/**
|
|
* Hello world!
|
|
*
|
|
*/
|
|
@SpringBootApplication
|
|
public class App
|
|
{
|
|
public static void main( String[] args )
|
|
{
|
|
SpringApplication.run(App.class);
|
|
System.out.println( "Hello World!" );
|
|
}
|
|
}
|