Hello,
I have below configuration for the jms channel.
<jms:channel id="inputchannel" queue="jmsQueue" error-handler="errorHandler"/>
1.In case of error, errorHandler is getting called multiple...
Type: Posts; User: techluver; Keyword(s):
Hello,
I have below configuration for the jms channel.
<jms:channel id="inputchannel" queue="jmsQueue" error-handler="errorHandler"/>
1.In case of error, errorHandler is getting called multiple...
got it. thanks
integration experts, please provide some hints.
thanks oleg. I have already looked at the example, but could not find what I'm looking for. can you please let me know what changes we need to do error handling example to get both payload and...
Hello,
I'm looking at the errorHandling example.
In case of error, below method is called
public void onInvitationFailed(Invitation inv) {
logger.info("Host received failure notification...
Hello,
I'm new to spring integration and my app runs in jboss.
this is my integration flow. ...
Hello, I'm trying to get auto-gen key using namedparameterjdbctemplate as shown above.
but getting below error. I'm using oracle 10g and spring 2.5x. any idea why this operation isnot supported.
...
thanks marten. I got your point. i was just experimenting with those settings.
But how can I force the framework to commit on exit of method call ? in my case, it is not already happening
as per this link (http://sujitpal.blogspot.com/2006/12/spring-jdbctemplate-with-autocommit.html), i tried to do explicit commit using "getJdbcTemplate().getDataSource().getConnection().commit()". ...
i have configured <tx:annotation-driven/> transaction in my app.
If I dont specify @transactional annotation in my dao class, what would be transaction settings of that class(for select & insert...
that scenario is possible as per this link
http://sujitpal.blogspot.com/2006/12/spring-jdbctemplate-with-autocommit.html
Thanks Marten. i'm trying to debug one issue and same is explained below
i'm using db pool. Lets say that thread1 has inserted some data in table1.
After thread1 is done, when thread2 is executing...
I use spring 2.5 with apache commons data source. i defined the transaction manager as below.
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"...
this is what i'm looking for. thx a lot Grzegorz Grzybek & srikanthradix
I dont find any setter for fetchsize in SimpleJdbcTemplate. thats problem I'm facing now
hello, at least, please tell me whether this can be done or not.
Thanks
Spring experts,
Please shed some light on this.
Hello,
how can we set fetchsize at connection level when there is no set function
if i want to write below function?
public static void setFetchSize(final SimpleJdbcTemplate jdbcTemplate,
...
Hello,
I see that this has been discussed in the thread http://forum.springsource.org/showthread.php?t=50401
but i still don't find how to set fetchsize in SimpleJdbcTemplate directly.
Please...
Hello,
I'm using config place holder as given below.
<context:property-placeholder location="classpath*:config1.properties,classpath*:config2.properties" />
I noticed that if spring could not...
Hello,
Yes it is yet another "common" question on Handling LargetResult set. Forgive me for that.
I would like to process upto 30 million of records using drools. I went through the forum and...
Can someone please respond to me?
Hello,
I have a standalone spring app.
I would like to wire application context to a bean for my special purpose the same way other beans ref are wired. Is there way to do that in xml?
I can also...
Hello,
I'm using spring jdbc+ transaction module in stand alone java project.
Though I'm doing context.registerShutdownHook(), I see IN_ACTIve TRANSACTION left behind(even after application...
Hello,
Can I share same instance of SimpleJdbcTemplate across threads?
Please clarify.
Thanks in advance.