Tagged Questions
0
votes
0answers
29 views
Spring3 pooling vs WebSphere's pooling?
I have a J2EE web application which uses Spring3 framework and will eventually be deployed on WebSphere Application Server 8.5. We wanted to implement some pooling for our web application. However, ...
1
vote
1answer
439 views
ActiveMQ's Messages being redelivered (PooledConnectionFactory misconfig suspect)
I have an application which is using spring MessageListenerContainers along with ActiveMQ. I've configured it to use PooledConnectionFactory, following activemq's documentation.
My scenario is as ...
0
votes
1answer
96 views
How to let CommonsPoolTargetSource pool size grow as needed?
I noticed that when there are many requests and the max pool size is reached, other requests wait until a resource is free. How do I setCommonsPoolTargetSource such that when it reaches its max pool ...
0
votes
0answers
190 views
Spring JdbcTemplate - Connections - Unable to Close it seems
I have a configured data source (mySQL) inside my Spring Application as below :
<bean id="dataSource"
class="org.apache.commons.dbcp.BasicDataSource">
<property ...
0
votes
1answer
193 views
How to initialise,load properties and dispose my own connection pool using spring?
I have own connection pool:
public final class ConnectionPool {
private static final Logger log = Logger.getLogger(ConnectionPool.class);
private static final int DEFAULT_POOL_SIZE = 10;
...
0
votes
1answer
401 views
Java Spring ThreadPoolExecutorFactoryBean
If I configure ThreadPoolExecutorFactoryBean with maxPoolSize=1 - so executor always has 1 thread - if I run 2 or more threads - spring create some queue or next invocation will wait previous?
Thanks.
...
0
votes
1answer
207 views
Spring + Hibernate + Spring
I've a project of Spring and Hibernate, but that use a lot of conections to my database (MYSQL). I know that I should implement a C3P0 to manage Pool conection but i dont know how?. Plase take me a ...
4
votes
1answer
2k views
Create a Pool of JAXB Unmarshaller
I was looking around to find a way to improve JAXB Unmarshalling performances processing huge sets of files and found the following advice:
"If you really care about the performance, and/or your ...
1
vote
2answers
540 views
Create ObjectPool in Spring
I have a class
class ObjPool {
MyObject getObject() {...}
void returnObject() {...}
int getUsedCount() {...}
}
How can we use Spring framework so that it would provide only one copy of this ...