为了账号安全,请及时绑定邮箱和手机立即绑定

如何检测所有 json 元素是否用于创建 Java 对象

如何检测所有 json 元素是否用于创建 Java 对象

汪汪一只猫 2023-07-13 15:46:32
作为参数,我没有使用 JsonObject,而是使用 MyObject。@RequestMapping(value = "/api/v1/authenticate", method = RequestMethod.POST)     public ResponseEntity<TokenDTO> createAuthenticationToken(@RequestBody JwtRequest authenticationRequest) {所以我让 spring 将 json 反序列化为对象,并且我直接使用对象。例子:authenticationRequest.getUsername();我正在寻找一些实用程序或注释来检测请求中是否有任何未使用的 json 元素,或者不使用适当的警告处理程序来处理它。
查看完整描述

1 回答

?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

您可以像这样使用@JsonAnySetter:


1-定义一个 BaseRequestDTO 类:


public abstract class BaseRequestDTO {

    @JsonAnySetter

    public Map<String, Object> additionalData=new HashMap<>();

}

该字段additionalData将保存不在 DTO 中的所有 json 字段


2-让你的 d 扩展它,例如:


class JwtRequest extends BaseRequestDTO{

   public String  username;

   public string password;

}

3-写一个方面来应用你的“严厉”策略:


@Aspect

@Component

public class ControllerArgsValidator {

    @Pointcut("within(@org.springframework.web.bind.annotation.RestController *)")

    public void restController() {

    }

    @Pointcut("within(@org.springframework.stereotype.Controller *)")

    public void controller() {

    }


    @Around("controller() || restController()")

    public Object validate(ProceedingJoinPoint point) throws Throwable {

        Object[] args = point.getArgs();

        for (Object arg : args) {

            if (arg instanceof BaseRequestDTO) {

                if((BaseRequestDTO) arg).additionalData.isEmpty())

                    //do what ever;

            }

        }

        return point.proceed();

    }


查看完整回答
反对 回复 2023-07-13
  • 1 回答
  • 0 关注
  • 84 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信