I am using an existing spring file that I am not allowed to edit.
It defines a org.springframework.orm.hibernate3.LocalSessionFactoryBean, and has a list of hibernate files.
I would like...
Type: Posts; User: braddavis; Keyword(s):
I am using an existing spring file that I am not allowed to edit.
It defines a org.springframework.orm.hibernate3.LocalSessionFactoryBean, and has a list of hibernate files.
I would like...
Extend the following class:
org.springframework.jdbc.object.StoredProcedure
http://www.springframework.org/docs/reference/jdbc.html#jdbc-StoredProcedure
The constructor should take your...
Right, this is what I am doing. I am asking for the XA connection factory to use for JTA transaction, does my JmsTemplate need the connection factory from spring called ConnectionFactory, or should...
You should be able to configure it more simply using the following:
<bean id="jmsTemplateExample"
class="org.springframework.jms.core.JmsTemplate">
<property name="connectionFactory">...
When providing the connection factory to a DefaultMessageListenerContainer, and the connection must use JTA, will Spring use the appropriate connection factory just by providing "ConnectionFactory"...
I have a similar situation. It seems that JBoss Messaging 1.0.1 isn't handling redelivery correctly.
One thing that they failed to impliment in JBoss Messaging 1.0.1 is message retry delay. It...
How do you know that the query is executing twice? Is it getting logged twice, and if so, can you validate that the log4j configuration isn't appending the query twice?
I am trying to configure a transaction over JMS, Oracle, and DB2 running on iSeries [AS400]. It seems when the commit occurs with the legacy system [DB2], an exception occurs in the transaction.
...