这些是我的标题:标题
这个错误不知从哪儿冒出来的。我已经有一段时间没有错误地向我的应用程序发送post请求了。我的post方法是:
控制器:
@PostMapping(path = "/generateCredential", consumes="multipart/form-data")
@ApiOperation(value = "User can register using this Api", response = RegisterForPluginResponse.class)
public ResponseEntity<Object> generateCredential(@Valid @RequestBody RegisterForPluginRequest registerForPlugin) {
...
}
dto公司:
public RegisterForPluginRequest() {
super();
}
public RegisterForPluginRequest(@Email @NotEmpty String clientName, @NotEmpty int packageId, String phone, String email) {
super();
this.clientName = clientName;
this.packageId = packageId;
this.phone = phone;
this.email = email;
}
在以前没有错误的情况下,什么会导致415错误?我最近确实做了一些更改,通过添加两列来更改我的应用程序的sql表,我想知道这是否是我的问题的根源?
暂无答案!
目前还没有任何答案,快来回答吧!