Spring引导MultipartFile请求返回404

发布于 2025-01-12 11:08:07 字数 357 浏览 2 评论 0原文

我发出 post 多部分请求并得到 404

看到: 路径正确!!

这是我的控制器: 我的控制器

这是我的 Bean: Bean 注册

请注意,我没有收到任何错误! 只有404

可能是什么问题? 谢谢

I make post multipart request and get 404

see that:
the path is correct!!

here it is my controlller:
my controller

here it is my Bean:
Bean registration

Please note that i dont get any error!!
Only 404

What can be the isssue?
Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜警司 2025-01-19 11:08:07

将控制器类的注释从 @Controller 更改为 @RestController 解决了我的问题。

Changing the annotation of the controller class from @Controller to @RestController solved my issue.

呆橘 2025-01-19 11:08:07

更新
我已经找到问题了
我有两种控制器
1 - Javax(雅加达)控制器,前缀为“rest”
2 - Spring控制器(我试图创建)具有相同的“rest前缀”

我知道我们不能让那些不同的控制器具有相同的前缀,这会导致冲突
我刚刚将第二个前缀重命名为“restapi”,两者都正常工作!
我花了两周时间才解决这个问题:)

UPDATE
I have found the issue
I have 2 kind of controllers
1 - Javax (Jakarta) controller with prefix "rest"
2 - Spring Controller (that i tried to create) with same "rest prefix

I understood that we cannot have those different controllers with same prefix this causes a conflict
I have just renamed the second prefix to "restapi" and both are working!
It took me 2 weeks to resolve it :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文