构建模块

This commit is contained in:
bamanker
2026-01-14 18:22:48 +08:00
commit 35aa09c4bb
12 changed files with 774 additions and 0 deletions

View File

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

View File

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