You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rather than getting the string value of the node HateoasMapperImpl.java#L139, we can get as a ExpressionNode value. Since IIRC syntax tree already parses the values and create them with proper structure. If we use that type, then we do not need to write our own parser logic like in here.. HateoasMapperImpl.java#L170
In above code segment, instead of converting the expression node to a string, we can directly return the expression node to do this change. MapperCommonUtils.java#L481
Then in HateoasMapperImpl we need to visit the nodes accordingly in order to get the values of linkedTo field in the http:ResourceConfig annotation.
The text was updated successfully, but these errors were encountered:
Description:
Rather than getting the string value of the node HateoasMapperImpl.java#L139, we can get as a
ExpressionNode
value. Since IIRC syntax tree already parses the values and create them with proper structure. If we use that type, then we do not need to write our own parser logic like in here.. HateoasMapperImpl.java#L170In above code segment, instead of converting the expression node to a string, we can directly return the expression node to do this change. MapperCommonUtils.java#L481
Then in
HateoasMapperImpl
we need to visit the nodes accordingly in order to get the values oflinkedTo
field in thehttp:ResourceConfig
annotation.The text was updated successfully, but these errors were encountered: