This commit is contained in:
weihu 2023-12-26 15:15:59 +08:00
parent 3c8b7ef544
commit 94c2a2875f
2 changed files with 19 additions and 0 deletions

View File

@ -29,6 +29,12 @@
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>

View File

@ -0,0 +1,13 @@
/**
* @author : wh
* @date : 2023/12/26 15:13
* @description:
*/
public class Test {
@org.junit.jupiter.api.Test
public void test() {
System.out.println("hahah");
}
}