Initial commit
This commit is contained in:
13
src/main/java/com/corewing/app/CoreWingApplication.java
Normal file
13
src/main/java/com/corewing/app/CoreWingApplication.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.corewing.app;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class CoreWingApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(CoreWingApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
3
src/main/resources/application.properties
Normal file
3
src/main/resources/application.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
# 应用服务 WEB 访问端口
|
||||
server.port=8080
|
||||
|
||||
6
src/main/resources/static/index.html
Normal file
6
src/main/resources/static/index.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<html>
|
||||
<body>
|
||||
<h1>hello word!!!</h1>
|
||||
<p>this is a html page</p>
|
||||
</body>
|
||||
</html>
|
||||
13
src/test/java/com/corewing/app/CoreWingApplicationTests.java
Normal file
13
src/test/java/com/corewing/app/CoreWingApplicationTests.java
Normal file
@@ -0,0 +1,13 @@
|
||||
package com.corewing.app;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class CoreWingApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user