habuma / spring-in-action-5-samples

Home for example code from Spring in Action 5.
Apache License 2.0
1.21k stars 1.04k forks source link

I can't find equivalent implementation of ResourceProcessor in current HATEOAS implementation, can any one help? #94

Open NAbdulla1 opened 4 years ago

NAbdulla1 commented 4 years ago

I am trying to run the example from Listing 6.8 and I know the some of the classes have new implementations like Resource became EntityModel, Resources became CollectionModel, and some others are here. But I can't find anything for ResourceProcessor, please help.

the line of attention

rotowu commented 4 years ago

That would be RepresentationModelProcessor https://docs.spring.io/spring-hateoas/docs/1.0.0.M1/apidocs/org/springframework/hateoas/server/RepresentationModelProcessor.html

NAbdulla1 commented 4 years ago

thanks