commit af09dd3cf3a1534c962d694b84251babd19075e6 Author: zxj <1845124851@qq.com> Date: Fri Oct 13 17:41:41 2023 +0800 init diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..96637b2 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# spring-boot-openapi + +springboot下的openapi功能测试,包含有Swagger和springdoc \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0762942 --- /dev/null +++ b/pom.xml @@ -0,0 +1,98 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.7.16 + + + com.jnssd + spring-boot-openapi + 0.0.1-SNAPSHOT + pom + spring-boot-openapi + spring-boot-openapi + + spring-boot-swagger + spring-boot-springdoc + spring-boot-model + + + 1.8 + + + 2.0.32 + 3.0.0 + 1.8 + + + + + + com.jnssd + spring-boot-model + 0.0.1-SNAPSHOT + + + + com.alibaba + fastjson + ${fastjson.version} + + + + io.springfox + springfox-boot-starter + ${swagger.version} + + + io.springfox + springfox-swagger-ui + ${swagger.version} + + + + + + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-configuration-processor + true + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + diff --git a/spring-boot-model/pom.xml b/spring-boot-model/pom.xml new file mode 100644 index 0000000..7708d83 --- /dev/null +++ b/spring-boot-model/pom.xml @@ -0,0 +1,20 @@ + + + 4.0.0 + + com.jnssd + spring-boot-openapi + 0.0.1-SNAPSHOT + + + spring-boot-model + + + 8 + 8 + UTF-8 + + + diff --git a/spring-boot-model/src/main/java/com/jnssd/model/Menu.java b/spring-boot-model/src/main/java/com/jnssd/model/Menu.java new file mode 100644 index 0000000..5375838 --- /dev/null +++ b/spring-boot-model/src/main/java/com/jnssd/model/Menu.java @@ -0,0 +1,28 @@ +package com.jnssd.model; + +import lombok.Data; + +/** + *

spring-boot-openapi

+ *

菜单

+ * + * @author zxj + * @since 2023-10-12 16:33:23 + */ +@Data +public class Menu { + private Integer id; + private String name; + private String url; + private String icon; + private String parentId; + private String parentName; + private String parentUrl; + private String parentIcon; + private String description; + private String sort; + private String type; + private String status; + private String createTime; + private String updateTime; +} diff --git a/spring-boot-model/src/main/java/com/jnssd/model/Role.java b/spring-boot-model/src/main/java/com/jnssd/model/Role.java new file mode 100644 index 0000000..ff1f914 --- /dev/null +++ b/spring-boot-model/src/main/java/com/jnssd/model/Role.java @@ -0,0 +1,18 @@ +package com.jnssd.model; + +import lombok.Data; + +/** + *

spring-boot-openapi

+ *

角色

+ * + * @author zxj + * @since 2023-10-12 16:32:38 + */ +@Data +public class Role { + private Integer id; + private String name; + private String description; + private String createTime; +} diff --git a/spring-boot-model/src/main/java/com/jnssd/model/User.java b/spring-boot-model/src/main/java/com/jnssd/model/User.java new file mode 100644 index 0000000..6361af3 --- /dev/null +++ b/spring-boot-model/src/main/java/com/jnssd/model/User.java @@ -0,0 +1,26 @@ +package com.jnssd.model; + +import lombok.Data; + +/** + *

spring-boot-openapi

+ *

用户

+ * + * @author zxj + * @since 2023-10-12 16:30:04 + */ +@Data +public class User { + + private Integer id; + private String name; + private String password; + private String email; + private String phone; + private String address; + private String description; + private String createTime; + private String updateTime; + private String status; + +} diff --git a/spring-boot-springdoc/pom.xml b/spring-boot-springdoc/pom.xml new file mode 100644 index 0000000..2d52493 --- /dev/null +++ b/spring-boot-springdoc/pom.xml @@ -0,0 +1,28 @@ + + + 4.0.0 + + com.jnssd + spring-boot-openapi + 0.0.1-SNAPSHOT + + + spring-boot-springdoc + + + 8 + 8 + UTF-8 + + + + + + com.jnssd + spring-boot-model + + + + diff --git a/spring-boot-springdoc/src/main/java/com/jnssd/controller/MenuController.java b/spring-boot-springdoc/src/main/java/com/jnssd/controller/MenuController.java new file mode 100644 index 0000000..0bf7025 --- /dev/null +++ b/spring-boot-springdoc/src/main/java/com/jnssd/controller/MenuController.java @@ -0,0 +1,52 @@ +package com.jnssd.controller; + +import com.jnssd.model.Menu; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.List; + +/** + *

spring-boot-openapi

+ *

菜单

+ * + * @author zxj + * @since 2023-10-12 16:33:23 + */ +@RestController("menu") +public class MenuController { + + List list = new java.util.ArrayList<>(); + + public ResponseEntity> getAll() { + return ResponseEntity.ok(list); + } + + // 添加方法 + @PostMapping("add") + public ResponseEntity add(Menu entity) { + list.add(entity); + return ResponseEntity.ok(entity); + } + + // 添加方法 + @PostMapping("update") + public ResponseEntity update(Menu entity) { + + return null; + } + + // 删除方法 + @PostMapping("delete") + public ResponseEntity delete(Menu entity) { + + return null; + } + + // 查询方法 + @PostMapping("query") + public ResponseEntity> query(Menu entity) { + return null; + } +} diff --git a/spring-boot-springdoc/src/main/java/com/jnssd/controller/RoleController.java b/spring-boot-springdoc/src/main/java/com/jnssd/controller/RoleController.java new file mode 100644 index 0000000..268e93f --- /dev/null +++ b/spring-boot-springdoc/src/main/java/com/jnssd/controller/RoleController.java @@ -0,0 +1,18 @@ +package com.jnssd.controller; + +import lombok.Data; + +/** + *

spring-boot-openapi

+ *

角色

+ * + * @author zxj + * @since 2023-10-12 16:32:38 + */ +@Data +public class RoleController { + private String id; + private String name; + private String description; + private String createTime; +} diff --git a/spring-boot-springdoc/src/main/java/com/jnssd/controller/UserController.java b/spring-boot-springdoc/src/main/java/com/jnssd/controller/UserController.java new file mode 100644 index 0000000..4de05ac --- /dev/null +++ b/spring-boot-springdoc/src/main/java/com/jnssd/controller/UserController.java @@ -0,0 +1,26 @@ +package com.jnssd.controller; + +import lombok.Data; + +/** + *

spring-boot-openapi

+ *

用户

+ * + * @author zxj + * @since 2023-10-12 16:30:04 + */ +@Data +public class UserController { + + private String id; + private String name; + private String password; + private String email; + private String phone; + private String address; + private String description; + private String createTime; + private String updateTime; + private String status; + +} diff --git a/spring-boot-swagger/pom.xml b/spring-boot-swagger/pom.xml new file mode 100644 index 0000000..1e135bb --- /dev/null +++ b/spring-boot-swagger/pom.xml @@ -0,0 +1,38 @@ + + + 4.0.0 + + com.jnssd + spring-boot-openapi + 0.0.1-SNAPSHOT + + + spring-boot-swagger + + + 8 + 8 + UTF-8 + + + + + + com.jnssd + spring-boot-model + + + + io.springfox + springfox-boot-starter + + + + + io.springfox + springfox-swagger-ui + + + diff --git a/spring-boot-swagger/src/main/java/com/jnssd/SwaggerApplication.java b/spring-boot-swagger/src/main/java/com/jnssd/SwaggerApplication.java new file mode 100644 index 0000000..0ce4d0b --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/SwaggerApplication.java @@ -0,0 +1,14 @@ +package com.jnssd; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import springfox.documentation.swagger2.annotations.EnableSwagger2; + +@SpringBootApplication +public class SwaggerApplication { + + public static void main(String[] args) { + SpringApplication.run(SwaggerApplication.class, args); + } + +} diff --git a/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerConfig.java b/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerConfig.java new file mode 100644 index 0000000..3651444 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerConfig.java @@ -0,0 +1,128 @@ +// package com.jnssd.config; +// +// import io.swagger.annotations.ApiOperation; +// import org.springframework.context.annotation.Bean; +// import org.springframework.context.annotation.Configuration; +// import springfox.documentation.builders.ApiInfoBuilder; +// import springfox.documentation.builders.OAuthBuilder; +// import springfox.documentation.builders.PathSelectors; +// import springfox.documentation.builders.RequestHandlerSelectors; +// import springfox.documentation.oas.annotations.EnableOpenApi; +// import springfox.documentation.service.*; +// import springfox.documentation.spi.DocumentationType; +// import springfox.documentation.spi.service.contexts.SecurityContext; +// import springfox.documentation.spring.web.plugins.Docket; +// import springfox.documentation.swagger.web.ApiKeyVehicle; +// import springfox.documentation.swagger.web.SecurityConfiguration; +// import springfox.documentation.swagger.web.SecurityConfigurationBuilder; +// import springfox.documentation.swagger2.annotations.EnableSwagger2; +// +// import java.util.ArrayList; +// import java.util.Collections; +// import java.util.List; +// +// /** +// *

spring-boot-openapi

+// *

+// * +// * @author zxj +// * @since 2023-10-12 17:13:09 +// */ +// @Configuration +// @EnableSwagger2 +// @EnableOpenApi +// public class SwaggerConfig { +// +// @Bean +// public Docket api() { +// return new Docket(DocumentationType.SWAGGER_2) +// .apiInfo(apiInfo()) +// .select() +// // 扫描特定包 +// // 扫描所有有注解的api,用这种方式更灵活 +// // .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) +// //.apis(RequestHandlerSelectors.any()) +// .apis(RequestHandlerSelectors.basePackage("com.jnssd")) +// .paths(PathSelectors.any()) +// .build() +// .securitySchemes(initSecuritySchemeList()) +// .securityContexts(Collections.singletonList(securityContext())); +// } +// public ApiInfo apiInfo() { +// return new ApiInfoBuilder() +// .title("Swagger项目测试") +// .description("novel项目接口文档") +// .build(); +// } +// +// private SecurityContext securityContext() { +// return SecurityContext.builder() +// .securityReferences(Collections.singletonList(new SecurityReference("OAuth2", new AuthorizationScope[0]))) +// .build(); +// } +// +// private List scopes() { +// List list = new ArrayList<>(); +// list.add(new AuthorizationScope("read_scope", "Grants read access")); +// list.add(new AuthorizationScope("write_scope", "Grants write access")); +// list.add(new AuthorizationScope("admin_scope", "Grants read write and delete access")); +// return list; +// } +// +// public List initSecuritySchemeList() { +// List list = new ArrayList<>(); +// list.add(securitySchemeOAuth2()); +// list.add(securitySchemeApiKey()); +// // list.add(securitySchemeHttp()); +// list.add(securitySchemeBasicAuth()); +// list.add(securitySchemeOauth2Schema()); +// return list; +// } +// +// private SecurityScheme securitySchemeOAuth2() { +// List grantTypes = new ArrayList<>(); +// grantTypes.add(new ResourceOwnerPasswordCredentialsGrant("/oauth/token")); +// return new OAuthBuilder() +// .name("OAuth2") +// .scopes(scopes()) +// .grantTypes(grantTypes) +// .build(); +// } +// +// private SecurityScheme securitySchemeApiKey() { +// return new ApiKey("Authorization", "api_key", ApiKeyVehicle.HEADER.getValue()); +// } +// +// private SecurityScheme securitySchemeHttp() { +// return HttpAuthenticationScheme.JWT_BEARER_BUILDER.name("JWT").build(); +// } +// +// private SecurityScheme securitySchemeBasicAuth() { +// return new BasicAuth("basicAuth"); +// } +// +// private SecurityScheme securitySchemeOauth2Schema() { +// List grantTypes = new ArrayList<>(); +// TokenRequestEndpoint tokenRequestEndpoint = new TokenRequestEndpoint("/oauth/authorize", "", ""); +// TokenEndpoint tokenEndpoint = new TokenEndpoint("/oauth/token", "token"); +// grantTypes.add(new AuthorizationCodeGrant(tokenRequestEndpoint, tokenEndpoint)); +// return new OAuthBuilder() +// .name("oauth2schema") +// .scopes(scopes()) +// .grantTypes(grantTypes) +// .build(); +// } +// +// @Bean +// public SecurityConfiguration security() { +// return SecurityConfigurationBuilder.builder() +// .clientId("") +// .clientSecret("") +// .realm("*") +// .appName("") +// .scopeSeparator("") +// .useBasicAuthenticationWithAccessCodeGrant(false) +// .build(); +// } +// +// } diff --git a/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerOpenApiConfig.java b/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerOpenApiConfig.java new file mode 100644 index 0000000..bc83436 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/config/SwaggerOpenApiConfig.java @@ -0,0 +1,145 @@ +package com.jnssd.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import springfox.documentation.builders.*; +import springfox.documentation.oas.annotations.EnableOpenApi; +import springfox.documentation.service.*; +import springfox.documentation.spi.DocumentationType; +import springfox.documentation.spi.service.contexts.SecurityContext; +import springfox.documentation.spring.web.plugins.Docket; + +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; + +/** + *

spring-boot-openapi

+ *

配置openapi

+ * + * @author zxj + * @since 2023-10-13 14:29:58 + */ + +@Configuration +@EnableOpenApi +public class SwaggerOpenApiConfig { + + @Bean + public Docket api() { + return new Docket(DocumentationType.OAS_30) + .apiInfo(apiInfo()) + .select() + // 扫描特定包 + // 扫描所有有注解的api,用这种方式更灵活 + // .apis(RequestHandlerSelectors.withMethodAnnotation(ApiOperation.class)) + //.apis(RequestHandlerSelectors.any()) + .apis(RequestHandlerSelectors.basePackage("com.jnssd")) + .paths(PathSelectors.any()) + .build() + .securitySchemes(initSecuritySchemeList()) + .securityContexts(Collections.singletonList(securityContext())); + } + + public ApiInfo apiInfo() { + return new ApiInfoBuilder() + .title("Swagger项目测试") + .description("novel项目接口文档") + .build(); + } + + private List initSecuritySchemeList() { + + List list = new ArrayList<>(); + list.add(httpAuthenticationScheme()); + list.add(securitySchemeApiKey()); + list.add(securitySchemeOpenIdConnect()); + + // 配置oauth2的几种模式 + list.add(securitySchemeOauth2ClientCredentials()); + list.add(securitySchemeOauth2implicit()); + list.add(securitySchemeOauth2Password()); + list.add(securitySchemeOauth2AuthorizationCode()); + return list; + } + + private SecurityScheme httpAuthenticationScheme() { + return HttpAuthenticationScheme.JWT_BEARER_BUILDER.name("JWT的值").build(); + } + + // ApiKey模式 + private SecurityScheme securitySchemeApiKey() { + return new ApiKey("Authorization授权", "Authorization", "header"); + } + + // OpenIdConnect + private SecurityScheme securitySchemeOpenIdConnect() { + return new OpenIdConnectSchemeBuilder() + .name("OpenId授权") + .description("OpenIdConnect授权配置") + .openIdConnectUrl("/oauth/authorize") + .build(); + } + + // 客户端模式 + private SecurityScheme securitySchemeOauth2ClientCredentials() { + return OAuth2Scheme.OAUTH2_CLIENT_CREDENTIALS_FLOW_BUILDER + .name("客户端模式") + .tokenUrl("/oauth/authorize") + .scopes(scopes()) + .build(); + } + + // 隐式模式 + private SecurityScheme securitySchemeOauth2implicit() { + return OAuth2Scheme.OAUTH2_IMPLICIT_FLOW_BUILDER + .name("简化模式") + .authorizationUrl("/oauth/authorize") + .scopes(scopes()) + .build(); + } + + // 密码模式 + private SecurityScheme securitySchemeOauth2Password() { + return OAuth2Scheme.OAUTH2_PASSWORD_FLOW_BUILDER + .name("密码模式") + .tokenUrl("/oauth/token") + .scopes(scopes()) + .build(); + } + + // 授权码模式 + private SecurityScheme securitySchemeOauth2AuthorizationCode() { + return OAuth2Scheme.OAUTH2_AUTHORIZATION_CODE_FLOW_BUILDER + .name("授权码模式") + .authorizationUrl("/oauth/authorize") + .tokenUrl("/oauth/token") + .scopes(scopes()) + .build(); + } + + private List scopes() { + List list = new ArrayList<>(); + list.add(new AuthorizationScope("read_scope", "Grants read access")); + list.add(new AuthorizationScope("write_scope", "Grants write access")); + list.add(new AuthorizationScope("admin_scope", "Grants read write and delete access")); + return list; + } + + private SecurityContext securityContext() { + return SecurityContext.builder() + .securityReferences(defaultAuth()) + .operationSelector(operationContext -> { + System.out.println("operationContext" + operationContext); + return !operationContext.httpMethod().name().equals("GET"); + }) + .build(); + } + + private List defaultAuth() { + AuthorizationScope authorizationScope = new AuthorizationScope("global", "accessEverything"); + AuthorizationScope[] authorizationScopes = new AuthorizationScope[1]; + authorizationScopes[0] = authorizationScope; + return Collections.singletonList(new SecurityReference("密码模式", authorizationScopes)); + } +} diff --git a/spring-boot-swagger/src/main/java/com/jnssd/controller/CommonController.java b/spring-boot-swagger/src/main/java/com/jnssd/controller/CommonController.java new file mode 100644 index 0000000..ad98c27 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/controller/CommonController.java @@ -0,0 +1,19 @@ +package com.jnssd.controller; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +/** + *

spring-boot-openapi

+ *

+ * + * @author zxj + * @since 2023-10-12 17:35:26 + */ +@Controller +public class CommonController { + + @GetMapping("/") + public String index() { + return "redirect:/swagger-ui/index.html"; + } +} diff --git a/spring-boot-swagger/src/main/java/com/jnssd/controller/MenuController.java b/spring-boot-swagger/src/main/java/com/jnssd/controller/MenuController.java new file mode 100644 index 0000000..b53c988 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/controller/MenuController.java @@ -0,0 +1,83 @@ +package com.jnssd.controller; + +import com.jnssd.model.Menu; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +import java.util.Comparator; +import java.util.List; +import java.util.Objects; + +/** + *

spring-boot-openapi

+ *

菜单

+ * + * @author zxj + * @since 2023-10-12 16:33:23 + */ +@RestController +@RequestMapping("/menu") +public class MenuController { + + final static String SUCCESS_TEXT = "操作成功!"; + final static String FAIL_TEXT = "操作失败!"; + + List list = new java.util.ArrayList<>(); + + @GetMapping("/") + public ResponseEntity> getAll() { + return ResponseEntity.ok(list); + } + + // 添加方法 + @PostMapping("add") + public ResponseEntity add(Menu entity) { + try { + entity.setId(list.size() + 1); + list.add(entity); + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + e.printStackTrace(); + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 添加方法 + @PostMapping("update") + public ResponseEntity update(Menu entity) { + try { + // 修改list下面的数据 + list.replaceAll((menu) -> Objects.equals(menu.getId(), entity.getId()) ? entity : menu); + + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 删除方法 + @PostMapping("delete") + public ResponseEntity delete(Menu entity) { + try { + boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId())); + return result ? ResponseEntity.ok(SUCCESS_TEXT) : ResponseEntity.status(400).body(FAIL_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(null); + } + } + + // 查询方法 + @PostMapping("query") + public ResponseEntity query(Integer id) { + try { + Menu menu = (Menu) list.stream().filter(e -> Objects.equals(e.getId(), id)); + // list 下查询 + return ResponseEntity.ok(menu); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } +} diff --git a/spring-boot-swagger/src/main/java/com/jnssd/controller/RoleController.java b/spring-boot-swagger/src/main/java/com/jnssd/controller/RoleController.java new file mode 100644 index 0000000..d764f57 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/controller/RoleController.java @@ -0,0 +1,79 @@ +package com.jnssd.controller; + +import com.jnssd.model.Menu; +import com.jnssd.model.Role; +import lombok.Data; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; + +import java.util.Comparator; +import java.util.List; +import java.util.Objects; + +/** + *

spring-boot-openapi

+ *

角色

+ * + * @author zxj + * @since 2023-10-12 16:32:38 + */ +@Data +public class RoleController { + + final static String SUCCESS_TEXT = "操作成功!"; + final static String FAIL_TEXT = "操作失败!"; + + List list = new java.util.ArrayList<>(); + + public ResponseEntity> getAll() { + return ResponseEntity.ok(list); + } + + // 添加方法 + @PostMapping("add") + public ResponseEntity add(Role entity) { + try { + entity.setId(Objects.requireNonNull(list.stream().max(Comparator.comparingInt(Role::getId)).get()).getId() + 1); + list.add(entity); + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 添加方法 + @PostMapping("update") + public ResponseEntity update(Role entity) { + try { + // 修改list下面的数据 + list.replaceAll((Role) -> Objects.equals(Role.getId(), entity.getId()) ? entity : Role); + + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 删除方法 + @PostMapping("delete") + public ResponseEntity delete(Role entity) { + try { + boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId())); + return result ? ResponseEntity.ok(SUCCESS_TEXT) : ResponseEntity.status(400).body(FAIL_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(null); + } + } + + // 查询方法 + @PostMapping("query") + public ResponseEntity query(Integer id) { + try { + Role Role = (Role) list.stream().filter(e -> Objects.equals(e.getId(), id)); + // list 下查询 + return ResponseEntity.ok(Role); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } +} diff --git a/spring-boot-swagger/src/main/java/com/jnssd/controller/UserController.java b/spring-boot-swagger/src/main/java/com/jnssd/controller/UserController.java new file mode 100644 index 0000000..6db0ff8 --- /dev/null +++ b/spring-boot-swagger/src/main/java/com/jnssd/controller/UserController.java @@ -0,0 +1,78 @@ +package com.jnssd.controller; + +import com.jnssd.model.User; +import lombok.Data; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.PostMapping; + +import java.util.Comparator; +import java.util.List; +import java.util.Objects; + +/** + *

spring-boot-openapi

+ *

用户

+ * + * @author zxj + * @since 2023-10-12 16:30:04 + */ +@Data +public class UserController { + + final static String SUCCESS_TEXT = "操作成功!"; + final static String FAIL_TEXT = "操作失败!"; + + List list = new java.util.ArrayList<>(); + + public ResponseEntity> getAll() { + return ResponseEntity.ok(list); + } + + // 添加方法 + @PostMapping("add") + public ResponseEntity add(User entity) { + try { + entity.setId(Objects.requireNonNull(list.stream().max(Comparator.comparingInt(User::getId)).get()).getId() + 1); + list.add(entity); + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 添加方法 + @PostMapping("update") + public ResponseEntity update(User entity) { + try { + // 修改list下面的数据 + list.replaceAll((User) -> Objects.equals(User.getId(), entity.getId()) ? entity : User); + + return ResponseEntity.ok(SUCCESS_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } + + // 删除方法 + @PostMapping("delete") + public ResponseEntity delete(User entity) { + try { + boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId())); + return result ? ResponseEntity.ok(SUCCESS_TEXT) : ResponseEntity.status(400).body(FAIL_TEXT); + } catch (Exception e) { + return ResponseEntity.status(400).body(null); + } + } + + // 查询方法 + @PostMapping("query") + public ResponseEntity query(Integer id) { + try { + User User = (User) list.stream().filter(e -> Objects.equals(e.getId(), id)); + // list 下查询 + return ResponseEntity.ok(User); + } catch (Exception e) { + return ResponseEntity.status(400).body(FAIL_TEXT); + } + } +} diff --git a/spring-boot-swagger/src/main/resources/application.yml b/spring-boot-swagger/src/main/resources/application.yml new file mode 100644 index 0000000..fe52966 --- /dev/null +++ b/spring-boot-swagger/src/main/resources/application.yml @@ -0,0 +1,10 @@ +server: + port: 18080 + +# ======================================================================== +# 启动报错需要修改以下mvc配置 Failed to start bean 'documentationPluginsBootstrapper' +spring: + mvc: + pathmatch: + matching-strategy: ant_path_matcher +# ========================================================================