Skip to content

Use custom data types for @XPathParam annotations [SWS-558] #682

@gregturn

Description

@gregturn

Eivind Tagseth opened SWS-558 and commented

We've been using @XPathParam annotations for a while, but the supported data types are too limiting. This becomes very clear with web services being passed a user context object as their first parameter. Setting up an XPathParam annotation for each user context field in the endpoint methods spoils the elegance of using XPathParam annotations.

The attached patch makes it possible to define your endpoint methods like this:

public void supportedTypes(@XPathParam("/root/child/complexType") UserContext userContext) {}

by creating a UserContextParamConverter handling the conversion from a Node to the UserContext object, and registering this converter using the converters property in the bean definition of the ExtendableXPathParamAnnotationMethodEndpointAdapter class.

This implementation tries XPathParamAnnotationMethodEndpointAdapter's conversion support first, then asks each converter registered. If my approach makes sense, theres no reason why the existing conversion support cannot be moved into it's own ParamConverter implementation as well.

Please let me know if this is useful or if there are changes I could make to make it more acceptable.

The patch depends on my other issue, #681.


Affects: 1.5.7

Attachments:

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions