Hi all,
Maybe I'm overlooking something here, but is it possible using Spring Data with JPA, to use query by example?
I mean, something like:
class AuthorRepository {
Author...
Type: Posts; User: Bodiam; Keyword(s):
Hi all,
Maybe I'm overlooking something here, but is it possible using Spring Data with JPA, to use query by example?
I mean, something like:
class AuthorRepository {
Author...
Yeah! It works! I was running RabbitMQ 2.8.2, and I uninstalled it, upgraded to 2.8.4, and now it works!!!! Nice! Thanks for the help!!!!!!
I tried some more stuff, and I came up with this code:
package nl.jworks.rabbitmq;
import com.rabbitmq.client.ConnectionFactory;
import com.rabbitmq.client.Connection;
import...
Hi Mark,
Thanks for the quick response. I was indeed trying multiple things here. I started with the code above, but it didn't work; no message was received.
I usually start the producer, and...
Hello all,
I'm trying a trivial RabbitMQ example, and everything works (eg, I can receive messages using Spring/Java), plus I can send messages using the RabbitMQ cli and web interface. The only...
I don't see how this is the same a getting the property value from an object. It seems like you are using the whole object as a key, which is not what I meant.
Hello, I was wondering if it's possible to create a Map in a Spring application context whose keys are not Strings, but are dynamisch attributes of other beans.
For example, I have a class:
...
Could you give an example of how to do that? I'm not sure if, or how, it possible to implement your suggestion. It might help if I show you how the CommunicationService is implemented..
public...
It's not exactly legacy code, but it's part of a library I use. It's very unlikely this code will change.
Well, this construction works, but is far from perfect. I'll consider writing a...
Hello all,
I'm a beginner when it comes to using Spring. I want to rewrite a small piece of Java code to use the Spring config:
CommunicationService.getInstance().registerMessageListener(...