配置接口注解和文档说明
This commit is contained in:
parent
50cbb58fd9
commit
a3fcc1b0f9
@ -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("*");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,11 +1,10 @@
|
|||||||
package com.jnssd.controller;
|
package com.jnssd.controller;
|
||||||
|
|
||||||
import com.jnssd.model.Menu;
|
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.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
@ -17,6 +16,7 @@ import java.util.Objects;
|
|||||||
* @author zxj
|
* @author zxj
|
||||||
* @since 2023-10-12 16:33:23
|
* @since 2023-10-12 16:33:23
|
||||||
*/
|
*/
|
||||||
|
@Tag(name = "菜单", description = "菜单")
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/menu")
|
@RequestMapping("/menu")
|
||||||
public class MenuController {
|
public class MenuController {
|
||||||
@ -27,13 +27,15 @@ public class MenuController {
|
|||||||
List<Menu> list = new java.util.ArrayList<>();
|
List<Menu> list = new java.util.ArrayList<>();
|
||||||
|
|
||||||
@GetMapping("/")
|
@GetMapping("/")
|
||||||
|
@Operation(summary = "获取所有菜单", description = "获取所有菜单")
|
||||||
public ResponseEntity<List<Menu>> getAll() {
|
public ResponseEntity<List<Menu>> getAll() {
|
||||||
return ResponseEntity.ok(list);
|
return ResponseEntity.ok(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加方法
|
// 添加方法
|
||||||
@PostMapping("add")
|
@PostMapping("add")
|
||||||
public ResponseEntity<String> add(Menu entity) {
|
@Operation(summary = "添加菜单", description = "添加菜单")
|
||||||
|
public ResponseEntity<String> add(@RequestBody Menu entity) {
|
||||||
try {
|
try {
|
||||||
entity.setId(list.size() + 1);
|
entity.setId(list.size() + 1);
|
||||||
list.add(entity);
|
list.add(entity);
|
||||||
@ -45,7 +47,8 @@ public class MenuController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 添加方法
|
// 添加方法
|
||||||
@PostMapping("update")
|
@PutMapping("update")
|
||||||
|
@Operation(summary = "修改菜单", description = "修改菜单")
|
||||||
public ResponseEntity<Object> update(Menu entity) {
|
public ResponseEntity<Object> update(Menu entity) {
|
||||||
try {
|
try {
|
||||||
// 修改list下面的数据
|
// 修改list下面的数据
|
||||||
@ -58,7 +61,8 @@ public class MenuController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 删除方法
|
// 删除方法
|
||||||
@PostMapping("delete")
|
@DeleteMapping("delete")
|
||||||
|
@Operation(summary = "删除菜单", description = "删除菜单")
|
||||||
public ResponseEntity<String> delete(Menu entity) {
|
public ResponseEntity<String> delete(Menu entity) {
|
||||||
try {
|
try {
|
||||||
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
|
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) {
|
public ResponseEntity<Object> query(Integer id) {
|
||||||
try {
|
try {
|
||||||
Menu menu = (Menu) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
Menu menu = (Menu) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
package com.jnssd.controller;
|
package com.jnssd.controller;
|
||||||
|
|
||||||
import com.jnssd.model.Role;
|
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.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
@ -17,6 +16,7 @@ import java.util.Objects;
|
|||||||
* @author zxj
|
* @author zxj
|
||||||
* @since 2023-10-12 16:32:38
|
* @since 2023-10-12 16:32:38
|
||||||
*/
|
*/
|
||||||
|
@Tag(name = "角色", description = "角色")
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/role")
|
@RequestMapping("/role")
|
||||||
public class RoleController {
|
public class RoleController {
|
||||||
@ -27,12 +27,14 @@ public class RoleController {
|
|||||||
List<Role> list = new java.util.ArrayList<>();
|
List<Role> list = new java.util.ArrayList<>();
|
||||||
|
|
||||||
@GetMapping("/")
|
@GetMapping("/")
|
||||||
|
@Operation(summary = "获取所有角色", description = "获取所有角色")
|
||||||
public ResponseEntity<List<Role>> getAll() {
|
public ResponseEntity<List<Role>> getAll() {
|
||||||
return ResponseEntity.ok(list);
|
return ResponseEntity.ok(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加方法
|
// 添加方法
|
||||||
@PostMapping("add")
|
@PostMapping("add")
|
||||||
|
@Operation(summary = "添加角色", description = "添加角色")
|
||||||
public ResponseEntity<String> add(Role entity) {
|
public ResponseEntity<String> add(Role entity) {
|
||||||
try {
|
try {
|
||||||
entity.setId(list.size() + 1);
|
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) {
|
public ResponseEntity<Object> update(Role entity) {
|
||||||
try {
|
try {
|
||||||
// 修改list下面的数据
|
// 修改list下面的数据
|
||||||
@ -58,7 +61,8 @@ public class RoleController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 删除方法
|
// 删除方法
|
||||||
@PostMapping("delete")
|
@DeleteMapping("delete")
|
||||||
|
@Operation(summary = "删除角色", description = "删除角色")
|
||||||
public ResponseEntity<String> delete(Role entity) {
|
public ResponseEntity<String> delete(Role entity) {
|
||||||
try {
|
try {
|
||||||
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
|
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) {
|
public ResponseEntity<Object> query(Integer id) {
|
||||||
try {
|
try {
|
||||||
Role role = (Role) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
Role role = (Role) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
||||||
|
@ -1,11 +1,10 @@
|
|||||||
package com.jnssd.controller;
|
package com.jnssd.controller;
|
||||||
|
|
||||||
import com.jnssd.model.User;
|
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.http.ResponseEntity;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.*;
|
||||||
import org.springframework.web.bind.annotation.PostMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
@ -17,6 +16,7 @@ import java.util.Objects;
|
|||||||
* @author zxj
|
* @author zxj
|
||||||
* @since 2023-10-12 16:30:04
|
* @since 2023-10-12 16:30:04
|
||||||
*/
|
*/
|
||||||
|
@Tag(name = "用户", description = "用户")
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/user")
|
@RequestMapping("/user")
|
||||||
public class UserController {
|
public class UserController {
|
||||||
@ -27,12 +27,14 @@ public class UserController {
|
|||||||
List<User> list = new java.util.ArrayList<>();
|
List<User> list = new java.util.ArrayList<>();
|
||||||
|
|
||||||
@GetMapping("/")
|
@GetMapping("/")
|
||||||
|
@Operation(summary = "获取所有用户", description = "获取所有用户")
|
||||||
public ResponseEntity<List<User>> getAll() {
|
public ResponseEntity<List<User>> getAll() {
|
||||||
return ResponseEntity.ok(list);
|
return ResponseEntity.ok(list);
|
||||||
}
|
}
|
||||||
|
|
||||||
// 添加方法
|
// 添加方法
|
||||||
@PostMapping("add")
|
@PostMapping("add")
|
||||||
|
@Operation(summary = "添加用户", description = "添加用户")
|
||||||
public ResponseEntity<String> add(User entity) {
|
public ResponseEntity<String> add(User entity) {
|
||||||
try {
|
try {
|
||||||
entity.setId(list.size() + 1);
|
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) {
|
public ResponseEntity<Object> update(User entity) {
|
||||||
try {
|
try {
|
||||||
// 修改list下面的数据
|
// 修改list下面的数据
|
||||||
@ -58,7 +61,8 @@ public class UserController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 删除方法
|
// 删除方法
|
||||||
@PostMapping("delete")
|
@DeleteMapping("delete")
|
||||||
|
@Operation(summary = "删除用户", description = "删除用户")
|
||||||
public ResponseEntity<String> delete(User entity) {
|
public ResponseEntity<String> delete(User entity) {
|
||||||
try {
|
try {
|
||||||
boolean result = list.removeIf(e -> Objects.equals(e.getId(), entity.getId()));
|
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) {
|
public ResponseEntity<Object> query(Integer id) {
|
||||||
try {
|
try {
|
||||||
User user = (User) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
User user = (User) list.stream().filter(e -> Objects.equals(e.getId(), id));
|
||||||
|
30
spring-boot-springdoc/src/test/java/com/demo/TestDemo.java
Normal file
30
spring-boot-springdoc/src/test/java/com/demo/TestDemo.java
Normal 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("含有");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -151,7 +151,7 @@ public class SwaggerOpenApiConfig {
|
|||||||
// 这里的SecurityReference第一个参数值必须和SecurityScheme的name值一致
|
// 这里的SecurityReference第一个参数值必须和SecurityScheme的name值一致
|
||||||
Arrays.stream(securitySchemeNames).forEach(name -> list.add(new SecurityReference(name, new AuthorizationScope[0])));
|
Arrays.stream(securitySchemeNames).forEach(name -> list.add(new SecurityReference(name, new AuthorizationScope[0])));
|
||||||
return SecurityContext.builder().operationSelector(operationContext -> {
|
return SecurityContext.builder().operationSelector(operationContext -> {
|
||||||
System.out.println("operationContext" + operationContext);
|
// System.out.println("operationContext" + operationContext);
|
||||||
// 除了get方法其他方法都要校验
|
// 除了get方法其他方法都要校验
|
||||||
// return !operationContext.httpMethod().name().equals("GET");
|
// return !operationContext.httpMethod().name().equals("GET");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user