Redis – Error using RestResponse from RestEasy Reactive library
I am trying to use the RestResponse<T> object from org.jboss.resteasy.reactive on the return of my application resources since the javax.ws.rs.core.Response doesn't provide the generic type. I am getting the error when I call this endpoint: public RestResponse<List<SampleResponse>> findAll() { return…