This commit is contained in:
2023-12-19 10:39:53 +08:00
commit 1450189ea3
9 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.lovenav;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class LoveNavApplication {
public static void main(String[] args) {
SpringApplication.run(LoveNavApplication.class, args);
}
}

View File

@@ -0,0 +1,4 @@
package com.lovenav.entity;
public class AdminEntity {
}

View File

@@ -0,0 +1,4 @@
package com.lovenav.mapper;
public interface AdminMapper {
}

View File

@@ -0,0 +1,4 @@
package com.lovenav.service;
public class AdminService {
}

View File

@@ -0,0 +1,11 @@
spring:
datasource:
url: jdbc:mysql://localhost:3306/love-nav
username: root
password: 1611
driver-class-name: com.mysql.cj.jdbc.Driver

View File

@@ -0,0 +1,6 @@
<html>
<body>
<h1>hello word!!!</h1>
<p>this is a html page</p>
</body>
</html>

View File

@@ -0,0 +1,13 @@
package com.lovenav;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class LoveNavApplicationTests {
@Test
void contextLoads() {
}
}