Spring MVC 支持 JSR 311 注释吗?
在帮助其他人时,我注意到他们正在尝试使用 @GET
、@Consumes
和 @Path
注释进行 Spring 开发。据我了解,这些注释来自 JSR-311 规范。
我只是建议他们使用 Spring @RequestMapping 注释将端点映射到控制器,但这让我很好奇 Spring MVC(任何版本)是否支持 JSR 311?
While helping out someone else, I noticed they were trying to do Spring development using the @GET
, @Consumes
, and @Path
annotations. It is my understanding that these annotations come from the JSR-311 specification.
I simply suggested that they use the Spring @RequestMapping
annotation for mapping endpoints to their controller, but it made me curious as to whether or not Spring MVC (any version) supports JSR 311?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答:否。引用Juergen Hoeller:
然而我在 3.0 和 3.1 中都没有找到这样的支持。
当然,您可以集成 Apache CXF 等框架并使用标准 JSR-311 注释。 Spring MVC 本身不识别这些注释。
Short answer: NO. To quote Juergen Hoeller:
However I haven't found such a support neither in 3.0 nor in 3.1.
Of course you can integrate frameworks like Apache CXF and use standard JSR-311 annotations. Spring MVC itself does not recognize these annotations.