core工程新增Application测试类

This commit is contained in:
Administrator
2020-10-19 15:21:52 +08:00
parent ab51b6933f
commit 135270edcd
2 changed files with 13 additions and 13 deletions

View File

@ -1,13 +0,0 @@
package org.mall.ebtp.cloud.core;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
}
}

View File

@ -0,0 +1,13 @@
package org.mall.ebtp.cloud.core;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class Application
{
public static void main( String[] args )
{
SpringApplication.run(Application.class, args);
}
}