Where to store a DataSource resource in a Java web app?
- by Slavko
This is a rookie question. What's the best place to put
@Resource
private DataSource ds;
in a web application? Do I put it in a servlet, context listener or maybe there's a better place for it?
Also, do I create a new Connection object in my doGet()/doPost() or should I do it somewhere else?
What's the best practice for stuff like this?
Thank you!