Hi
glad you dropped that idea. We managed to have a working configuration, only to discover that it causes randon deadlocks within IBM's JCA code...
you don't want to be there, really;)
Type: Posts; User: drvillo; Keyword(s):
Hi
glad you dropped that idea. We managed to have a working configuration, only to discover that it causes randon deadlocks within IBM's JCA code...
you don't want to be there, really;)
You can deploy it both as a WAR or EAR app. The difference with an MDB resides in that you don't configure the consumer parameters through the ejb deployment descriptors, but in your spring context...
Hi
while doing some load testing I am systematically facing a thread deadlock in the consumer threadpool, which causes messages to queue up without being consumed. In particular the thread dump...
For what is worth I circumvented the problem and made so that the JNDI lookup is performed by the client code, thus passing the managed object to the code executing in the threadpool. You might want...
Strangely enough, today I'm having the same problem...Please bear with me if in my case it does not apply directly to Quartz.
I'm using Spring JMS to consume messages (configuration follows) and...
Hi all
it seems impossible to me that this is becoming so cumbersome...So I'd rather ask for advice:)
I have a series of MultiActionController(s) and I have the well known problem of handling...
Hi all
I've been mumbling on this for some time, and I'm not decided on what could work best...
basically I've a normal Spring MVC app, rendering views with XSLT. Each domain object is grouped...
Nice, thanks.
I was going to do it myself but you've been more efficient;)
Cheers
F
I've checked and the offending part is in
protected void checkOpen() throws SQLException {
if(_closed) {
throw new SQLException
("Connection " +...
Hi all
I'm not sure this is the right place, but I don't quite know to whom this issue might belong (beside me).
I'm using quite a mix of things here: to make it simple I'm creating stateful...
Hi all
I'm kind of confused with my own setup...
First the general question:
how can I define the order of invocation of two around advices?
More details follow:
I've implemented a...
Hi all
I had the problem of adding aspects to non spring-managed objects. For this reason I've resorted to AspectJProxyFactory and it works like a charm.
Now, the aspect I needed to apply is...
Hi All
Realizing that I had autoCommit turned on by default, using dbcp, today I discovered that my transactionManager doesn't really commit too much.
My set up is the following:
<bean...
Hi all
To trace who generates a new thread within a service I'm working on I was thinking of intercepting calls to Thread's constructor, so to log them.
Nevertheless I haven't been able to think...
Hi
Do you mean an instance within a pool of consumers of the same type?
Anyway I'm not too sure on how to do this, I have to accomplish something similar and it seems to me that jmx is the way...
Mmh, that's what I understood as well.
For the sake of completeness I have found this page in the meantime, maybe it's useful to someone else:
...
Mmh, I also posted a question about this...
I understand what Jenks does but what Spring _without_ Jencks offers then? I can write MDP with it, but I don't understand how it deals with pooling....
Hi there
I'm considering to refactor a pretty heavily multithreaded service, replacing JSE ThreadPool and BlockingQueue with a lightweight messaging stack.
I have been looking around for a...
Ok, after digging some more I've found this,
from http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch7.chapt.html
So it seems that I'll have to take the next step, which I was saving for...
Hi everybody
This is not strictly an EJB issue but I couldn't find any better forum to post in...
I've developed a resource adapter, which is deployed under jboss as follows:
<!--...
There is also this possibility
https://simple-jta.dev.java.net/
maybe you find it useful...
cheers
F
Hi there
I'm not sure whether this is strictly a spring issue or not but here it goes:
I'm working on a heavily mulithreaded service, that basically inserts data into a database. Due to...
you don't have to do anything. JdbcDaoSupport has the dataSource field.
I think the service will have to run relying on the file storage type of hsql, at least for the DIY version. nevertheless for the one we will run in house probably we could use other DBMSes. Actually...
Well AFAIK the transaction manager needs the datasource, and the dao's extend JdbcDaoSupport, requiring a datasource as well.
So how could I remove this double injection?
Thanks, this post is...