Hi again,
I've used the NIO connector instead of the default and now the server does process all the request concurrently.
<Connector connectionTimeout="20000" maxThreads="5"...
Type: Posts; User: jck.kln; Keyword(s):
Hi again,
I've used the NIO connector instead of the default and now the server does process all the request concurrently.
<Connector connectionTimeout="20000" maxThreads="5"...
Hi,
I've done the same test with another application (spring-mvc-chat) and I've got the same result.
With Tomcat limited to 5 threads, after 5 clients connected to the chat all Tomcat threads...
The DispatcherServlet is configured correctly as you can see in the code below:
<servlet>
<servlet-name>appServlet</servlet-name>...
Hi,
I've done some tests with the spring mvc's async functionality and it doesn't work as expected. The tests have been done with the spring-mvc-showcase application and deployed on Tomcat 7.0.34....
Hello,
If I have got many applicationContext.xml in an application and there are some bean with the same id, Spring will override these beans with the last applicationContext.
This is the...
Hi,
I use the Spring JDBC for data accessing. Until now I was using the Spring’s version 2.0.6, but currently I am trying to migrate to 2.5.4 version.
I have some problems with this version...