Spring 2.5 的 @PathVariable 等效项
我正在处理一些运行 Spring 2.5 的遗留代码。我需要使用类似于 Spring 3 的 @PathVariable 的东西...Spring 2.5 中是否有类似的东西?
I am working on some legacy code running Spring 2.5. I need to use something similar to Spring 3's @PathVariable...anything similar available in Spring 2.5?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能会得到的最接近的是通过 映射路径中的 ant 样式通配符。我想,然后您将必须在方法中手动解析路径才能获取变量值。
The closest you'll probably get is through ant-style wildcards in mapping paths. You will then have to parse the path manually in your method to get the variable value, I guess.