I'm developing a Java EE based application using Tomcat as server and MySQL as database. I have configured the connection pool for 50 users.
Now my question is, if at a given time there are 51 users accessing the application (simultaneously), what will happen to the 51th user? (as the application supports only 50 connections at a time)
My requirement is that for the 51st user I need to show a message like " Please access after some other time".
Is this possible?