查询参数绑定到DTO中,如何忽略特定参数?
有没有什么好方法可以忽略绑定到 DTO 参数的某些请求查询参数?
@Data // setters and getters
class Dto {
private String param1;
private String param2;
}
@GetMapping("/hello-world")
@ResponseBody
public ResponseEntity<Dto> sayHello(Dto params)
{ ... }
在这种情况下,我想排除特定参数的绑定。
经过一番研究后我找不到任何解决方案,有什么帮助吗?
Is there any good way to ignore some request query parameters from binding to DTO parameters?
@Data // setters and getters
class Dto {
private String param1;
private String param2;
}
@GetMapping("/hello-world")
@ResponseBody
public ResponseEntity<Dto> sayHello(Dto params)
{ ... }
I would like to exclude binding of specific param in such case.
After some research I can't find any solution for it, any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论