STS(Spring Tools Suite)2.7.2 @RequestMappings视图不显示
当前使用:
Spring Tools Suite v2.7.2
Spring Framework v3.0.5
控制器中的示例代码:
@RequestMapping( value={ "/en/page", "/fr/page" }, method = { RequestMethod.POST })
在 STS 中重现问题的步骤:
[Menu] Window ->显示视图-> @RequestMappings
[项目] 右键单击 ->弹簧工具->显示RequestMappings
返回:
Javadoc 内容丢失或为空
问题:
如何填充所有 @RequestMappings 以查看 Web 应用程序中映射的所有 url?
Currently Using:
Spring Tools Suite v2.7.2
Spring Framework v3.0.5
Sample Code in a controller:
@RequestMapping( value={ "/en/page", "/fr/page" }, method = { RequestMethod.POST })
Steps to reproduce issue in STS:
[Menu] Window -> Show View -> @RequestMappings
[Project] Right Click -> Spring Tools -> Show RequestMappings
Returns:
Javadoc content is missing or empty
Question:
How can I populate all @RequestMappings to view all urls mapped in my web application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要解决此问题,您必须:
然后:
看来代码还必须编译才能在 IDE 中输出映射,
干杯。
To resolve, you must:
Then:
It seems that the code must also compile before the mappings can be output in the IDE,
Cheers.