han-ai-robot:
后端项目初始化完毕
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package com.hanserwei.airobot;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class HanAiRobotSpringbootApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(HanAiRobotSpringbootApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
3
src/main/resources/application.yml
Normal file
3
src/main/resources/application.yml
Normal file
@@ -0,0 +1,3 @@
|
||||
spring:
|
||||
application:
|
||||
name: han-ai-robot-springboot
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.hanserwei.airobot;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class HanAiRobotSpringbootApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user