更改每个操作类的 struts-rest idParameterName
我想为不同的操作类使用不同的 idParameterNames。 这是可能的还是我必须编写自己的映射器?
I want to have different idParameterNames for different action classes. Is that possible or do I have to write my own mapper?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。
struts.mapper.idParameterName
由RestActionMapper
使用,并且该参数在返回ActionMapping
之前(即在执行操作之前)进行解析。用途是已知的)。No, this is not possible. The
struts.mapper.idParameterName
is used by theRestActionMapper
and the parameter is parsed prior to theActionMapping
being returned (i.e., before the action to use is known).