配置接口注解和文档说明

This commit is contained in:
2024-03-08 16:49:43 +08:00
parent 50cbb58fd9
commit a3fcc1b0f9
6 changed files with 90 additions and 23 deletions

View File

@ -0,0 +1,22 @@
package com.jnssd.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
/**
* @author zxj
* @since 2023-10-20 14:38:00
* @apiNote 配置接口跨域请求问题
*/
@Configuration
public class CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("GET", "POST", "PUT", "DELETE")
.allowedHeaders("*");
}
}

View File

@ -1,11 +1,10 @@
package com.jnssd.controller;
import com.jnssd.model.Menu;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
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 org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
@ -17,6 +16,7 @@ import java.util.Objects;
* @author zxj
* @since 2023-10-12 16:33:23
*/
@Tag(name = "菜单", description = "菜单")
@RestController
@RequestMapping("/menu")
public class MenuController {
@ -27,13 +27,15 @@ public class MenuController {
List<Menu> list = new java.util.ArrayList<>();
@GetMapping("/")
@Operation(summary = "获取所有菜单", description = "获取所有菜单")
public ResponseEntity<List<Menu>> getAll() {
return ResponseEntity.ok(list);
}
// 添加方法
@PostMapping("add")
public ResponseEntity<String> add(Menu entity) {
@Operation(summary = "添加菜单", description = "添加菜单")
public ResponseEntity<String> add(@RequestBody Menu entity) {
try {
entity.setId(list.size() + 1);
list.add(entity);
@ -45,7 +47,8 @@ public class MenuController {
}
// 添加方法
@PostMapping("update")
@PutMapping("update")
@Operation(summary = "修改菜单", description = "修改菜单")
public ResponseEntity<Object> update(Menu entity) {
try {
// 修改list下面的数据
@ -58,7 +61,8 @@ public class MenuController {
}
// 删除方法
@PostMapping("delete")
@DeleteMapping("delete")
@Operation(summary = "删除菜单", description = "删除菜单")
public ResponseEntity<String> delete(Menu entity) {
try {
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
@ -69,7 +73,8 @@ public class MenuController {
}
// 查询方法
@PostMapping("query")
@GetMapping("query")
@Operation(summary = "查询菜单", description = "查询菜单")
public ResponseEntity<Object> query(Integer id) {
try {
Menu menu = (Menu) list.stream().filter(e -> Objects.equals(e.getId(), id));

View File

@ -1,11 +1,10 @@
package com.jnssd.controller;
import com.jnssd.model.Role;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
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 org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
@ -17,6 +16,7 @@ import java.util.Objects;
* @author zxj
* @since 2023-10-12 16:32:38
*/
@Tag(name = "角色", description = "角色")
@RestController
@RequestMapping("/role")
public class RoleController {
@ -27,12 +27,14 @@ public class RoleController {
List<Role> list = new java.util.ArrayList<>();
@GetMapping("/")
@Operation(summary = "获取所有角色", description = "获取所有角色")
public ResponseEntity<List<Role>> getAll() {
return ResponseEntity.ok(list);
}
// 添加方法
@PostMapping("add")
@Operation(summary = "添加角色", description = "添加角色")
public ResponseEntity<String> add(Role entity) {
try {
entity.setId(list.size() + 1);
@ -45,7 +47,8 @@ public class RoleController {
}
// 添加方法
@PostMapping("update")
@PutMapping("update")
@Operation(summary = "修改角色", description = "修改角色")
public ResponseEntity<Object> update(Role entity) {
try {
// 修改list下面的数据
@ -58,7 +61,8 @@ public class RoleController {
}
// 删除方法
@PostMapping("delete")
@DeleteMapping("delete")
@Operation(summary = "删除角色", description = "删除角色")
public ResponseEntity<String> delete(Role entity) {
try {
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
@ -69,7 +73,8 @@ public class RoleController {
}
// 查询方法
@PostMapping("query")
@GetMapping("query")
@Operation(summary = "查询角色", description = "查询角色")
public ResponseEntity<Object> query(Integer id) {
try {
Role role = (Role) list.stream().filter(e -> Objects.equals(e.getId(), id));

View File

@ -1,11 +1,10 @@
package com.jnssd.controller;
import com.jnssd.model.User;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
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 org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Objects;
@ -17,6 +16,7 @@ import java.util.Objects;
* @author zxj
* @since 2023-10-12 16:30:04
*/
@Tag(name = "用户", description = "用户")
@RestController
@RequestMapping("/user")
public class UserController {
@ -27,12 +27,14 @@ public class UserController {
List<User> list = new java.util.ArrayList<>();
@GetMapping("/")
@Operation(summary = "获取所有用户", description = "获取所有用户")
public ResponseEntity<List<User>> getAll() {
return ResponseEntity.ok(list);
}
// 添加方法
@PostMapping("add")
@Operation(summary = "添加用户", description = "添加用户")
public ResponseEntity<String> add(User entity) {
try {
entity.setId(list.size() + 1);
@ -45,7 +47,8 @@ public class UserController {
}
// 添加方法
@PostMapping("update")
@PutMapping("update")
@Operation(summary = "修改用户", description = "修改用户")
public ResponseEntity<Object> update(User entity) {
try {
// 修改list下面的数据
@ -58,7 +61,8 @@ public class UserController {
}
// 删除方法
@PostMapping("delete")
@DeleteMapping("delete")
@Operation(summary = "删除用户", description = "删除用户")
public ResponseEntity<String> delete(User entity) {
try {
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
@ -69,7 +73,8 @@ public class UserController {
}
// 查询方法
@PostMapping("query")
@GetMapping("query")
@Operation(summary = "查询用户", description = "查询用户")
public ResponseEntity<Object> query(Integer id) {
try {
User user = (User) list.stream().filter(e -> Objects.equals(e.getId(), id));

View File

@ -0,0 +1,30 @@
package com.demo;
import org.junit.jupiter.api.Test;
import java.util.Arrays;
/**
* <h3>spring-boot-openapi</h3>
* <p>1</p>
*
* @author zxj
* @since 2023-11-27 10:12:54
*/
public class TestDemo {
@Test
public void uoso_2311271014() {
String filterAllow = "111;222;;3333";
String referer = "21";
if (Arrays.stream(filterAllow.split(";")).noneMatch(item-> item.contains(referer))) {
System.out.println(111);
} else {
System.out.println("含有");
}
}
}

View File

@ -151,7 +151,7 @@ public class SwaggerOpenApiConfig {
// 这里的SecurityReference第一个参数值必须和SecurityScheme的name值一致
Arrays.stream(securitySchemeNames).forEach(name -> list.add(new SecurityReference(name, new AuthorizationScope[0])));
return SecurityContext.builder().operationSelector(operationContext -> {
System.out.println("operationContext" + operationContext);
// System.out.println("operationContext" + operationContext);
// 除了get方法其他方法都要校验
// return !operationContext.httpMethod().name().equals("GET");