Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8889113
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T22:10:59+00:00 2026-06-14T22:10:59+00:00

When you inject a datasource in your application and get a connection by invoking

  • 0

When you inject a datasource in your application and get a connection by invoking getConnection() on it, are you supposed to close the connection?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T22:11:00+00:00Added an answer on June 14, 2026 at 10:11 pm

    Even though the datasource itself is container managed, the API indeed requires the programmer to close connections. This is different from a couple of other container managed resources (like the entity manager), where the container takes care of closing. Note that closing here in the majority of cases doesn’t actually closes the connection here, but returns the connection to a connection pool.

    As a rule of thumb, if you use a factory-ish resources to obtain one or more other resources from that can be closed, you have to close them. Otherwise the container does this.

    Since Connection implements AutoCloseable, you can use a try-with-resources block for this:

    @Stateless
    public class MyBean {
    
        @Resource(lookup = "java:/app/datasource")
        private DataSource dataSource;
    
        public void doStuff() {
            try (Connection connection = dataSource.getConnection()) {
    
                // Work with connection here
    
            } catch (SQLException e) {
                throw new SomeRuntimeException(e);
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my application I have a set of of DAOs which I inject into
I want to use my Spring Beans in my JSF application, letting Spring inject
I am trying to inject the datasource object into a servlet. I have the
Simple Inject is throwing the following exception when attempting to register my DbContext. The
I'm attempting to inject a dependency that varies by the state passed in. For
I like to inject DLLs to processes, because I can change certain values of
Im looking to inject a variable into a page before a method is run.
Is is possible to inject IPrincipal using Castle Windsor into my asp.net mvc controller.
I want to inject some Json into the Html page returned by the server?
Problem: How to inject my own response stream to currently running iexplore.exe window.. Explation:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.