Saved Bookmarks
| 1. |
Your Java Application Is Connected To A Database Via A Connection Pool. Suddenly Your Database Goes Down? Is That An Issue With Your Java Application? Do You Need To Restart Your Java Application? |
|
Answer» hint: SINCE your Java application is using a connection pool, it has ACTIVE CONNECTIONS to database which will get disconnected once DB goes down. If you try to execute a query, you will receive Socket ERRORS. hint: Since your Java application is using a connection pool, it has active connections to database which will get disconnected once DB goes down. If you try to execute a query, you will receive Socket errors. |
|