<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version>
<dependencies>
<dependency>...
Type: Posts; User: PiotrD; Keyword(s):
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.4</version>
<dependencies>
<dependency>...
Hi Mark, I have the same issue with Spring Integration 2.0.5.RELEASE but I think that this is problem with outbound channel adapter which is the last element in chain rather than with transformer....
Yeah, it works! Simply beautiful ;)
Thanks!
Thank you very much for help,
You mean that if I used Spring Integration QueueChannel, JMS message, when put into queue would be marked as "processed", and then it might be possible to close...
Hi,
I'd like to refresh my application context when system receives JMS message. In order to do it, I set up Spring Integration jms:message-driven-channel-adapter which forwards message to service...
Ok, I've figured out that it works as I've expected, but only if I annotate one of class fields with @Id. Before, I allowed mongoDB to create identifiers and apparently, when comparing objects it...
Does org.springframework.data.repository.CrudRepository (with MongoDB) supports updating object that is already persisted via repository "save" method?
First of all, if object had been already...
Yep, it would solve the problem, but I thought that there may be better way. Thanks
Thank you very much for help.
Your sample code works fine, however it would be better if I could perform XSL transformation for already chunked XML - not at the very beginning when I have entire...
I have a huge XML file containing customer's data and I'd like to process these data using Spring Batch.
Below is an example draft:
<customer>
<name>(...)</name>
<surname>(...)</surname>...
After investigating this issue I can say that most probably there is a flaw in integration of HornetQ with Spring Integration JMS system.
Let's consider the following situation (HornetQ as a JMS...
Hi,
My enterprise application is divided into modules connected over JMS. First module acts as a dispatcher - it receives request from remote clients, does some request processing and forwards...
Thank you for your response, it is much more clear for me now, but I still have some questions :)
I am wondering about design of such a "ejb-spring integrated application". How it should look like...
Shame on me...
Thank you very much. Here is working version for other newbies ;)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
Hi,
When I'm trying to obtain remote reference to EJB usind JNDI or remote-slsb the following error occurs:
Exception in thread "main"...
Hi,
It may be strange question, but I am spring newbie and this one thing is unclear for me.
As I've read here:...
Ok, I've found the solution.
I can map only implementing classes, but because the interface is not mapped I need to use fully qualified name:
String FIND_HQL = "from my.package.name.Person...
It is my first post on Spring forum so Hello Everyone! I have to admit that I am Hibernate newbie so your patience is very appreciated :)
In my simple application I have Person interface which is...