Greg L. Turnquist

Results 352 comments of Greg L. Turnquist

@alexp1917 I created a barebones project using Spring Boot + Spring Data Cassandra + Spring Data REST. I can switch `spring.data.rest.detection-strategy=annotated` on and off, and it works as expected. I...

~~Are you saying RabbitMQ's APIs do this?~~ Looks like it's a call into `Channel.declareQueue`, which `RabbitTemplate` simply executes like: ```java this.rabbitTemplate.execute((channel) -> { DeclareOk[] declared = this.declareQueues(channel, queue); return declared.length...

If I'm using an anonymous queue for each `Receiver` instance, how can the sender even know all the queues that need to be created?

So why not put that into `Receiver`, since that's where queue declarations typically happen?

Agree that you could create an `AmqpAdmin` type thing for that. In lieu of that, I'd lean toward letting `Sender` declaring exchanges, and then `Receiver` finish by creating queues and...

No, it hasn't. It's found in this repo's "commons" section. Essentially, I'm using this example repo as a place to gather feature mods I wish to carry back to Spring...

`ResourceAssembler` is a Spring HATEOAS class. Documentation can be found here => https://docs.spring.io/spring-hateoas/docs/0.24.0.RELEASE/reference/html/#fundamentals.resource-assembler

I only get a warning about using a raw parameterized type. In fact, I ran `api-evolution`/`original-server` and was able to ping the server... ``` { "_links": { "self": { "href":...

Are you talking about a more ActiveRecord-based approach, and building links to the actions in the domain object?

ActiveRecord was a pattern where a domain object can save itself to the database. The concept is that who should know better than the object? You’d see more of this...