Reputation: 277
does anybody know if spring has a way to implement http batch operations, e.g. like in OData?
http://www.odata.org/documentation/odata-version-3-0/batch-processing/
Thank you
Upvotes: 0
Views: 899
Reputation: 4586
Spring doesn't support HTTP batch requests out of the box (neither do other general purpose Java frameworks), so I started working on my own (still in beta stage): https://github.com/bedrin/batchy
Apache Olingo supports OData 4.0 and batch requests, so if OData is what you need, try Olingo.
Upvotes: 1