Working on an app using Struts2, Tomcat 7 and an oracle database. Right now I have it working with simple JDBC connection set up for each action but I would like to use connection pooling. I tried to follow the following tutorial since I could not find one specifically for Struts 2:
http://viralpatel.net/blogs/database-connection-pooling-tomcat-eclipse-db/
What additions/changes would be required to use this with Struts2? Can I just call doGet() and have it return a String to display corresponding webpage (like a typical execute method would)?
Or is there an alternative for managing db connections in a Struts2 app? (without using another framework such as Spring or hibernate).