Spring Rest 端点中的表单数据
如何创建 http POST 端点来在 Spring 中发送图片等数据?
我检查了不同的选项并使用了它,但我无法创建它。
例如我使用:
@Controller
@RequiredArgsConstructor
@RequestMapping("/web")
public class AuthenticationController {
@PostMapping(value = "/login", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public void login(@RequestParam(value = "username") String userName,
@RequestParam(value = "password") String password) {
// NOP
}
}
How can I create http POST endpoint to send data like pictures in spring?
I checked different options and used its but I can not create it.
For example I used:
@Controller
@RequiredArgsConstructor
@RequestMapping("/web")
public class AuthenticationController {
@PostMapping(value = "/login", consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
public void login(@RequestParam(value = "username") String userName,
@RequestParam(value = "password") String password) {
// NOP
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样使用
@PostMapping(value = "/login")
公共无效登录(@RequestParam(“文档”)MultipartFile文档){
在此处输入代码
}
You can use like this
@PostMapping(value = "/login")
public void login(@RequestParam("document") MultipartFile document) {
enter code here
}