I have a Java application on Elastic Beanstalk and I am connecting directly to Amazon's RDS for every request, the response time is very long and I need to reduce this. I recently found out I need to do this through Connection Pooling and that Tomcat is capable of carrying this out. Basically, I need to know the following:
1) is Connection Pooling available for an application on elastic beanstalk?
2) If there is any documentation available for this?
3) If it were available through the Tomcat Server, can I configure tomcat directly and what would that affect any of the functions of Elastic Beanstalk?
thankYouuuuuuu :)