将可用注释功能扩展到另一个自定义注释
我正在为我们的项目框架创建 Web 服务的自定义端点注释,类似于 org.springframework.ws.server.endpoint.annotation.Endpoint。我只是想添加一些额外的功能并提供与 spring 中定义的相同的功能。
有没有办法扩展 spring Endpoint 注释的功能并为其添加一些额外的功能?
谢谢
I am creating custom Endpoint annotation for webservice to our project framework which is similar to org.springframework.ws.server.endpoint.annotation.Endpoint. I just want to add some extra functionality and give the same feature as defined in spring.
Is there any way to extend the feature of spring Endpoint annotation and add some extra finctioanlity to that?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据文档,可以通过重写 AbstractAnnotationMethodEndpointMapping。如果您扩展soap端点映射,应该可以让它处理您的带注释的元素,这样您就可以修改并返回其调用链。
According to the docs, it is possible to implement your own annotation as endpoint by overriding methods from AbstractAnnotationMethodEndpointMapping. If you extend soap endpoint mapping, it should be possible to let it process your annotated element, so you can and modify and return its invocation chain.