I am new to Java EE. Today I tried to learn Java EE by following this tutorial: http://netbeans.org/kb/docs/javaee/javaee-gettingstarted.html
He mainly teaches how to build a web application from Java web categories using Netbeans.
When I launch the application, I received the "Build failed" error message as follows:
WebApplication1/build/web&name=WebApplication1&contextroot=/WebApplication1&force=true failed on GlassFish Server 3+ Error occurred during deployment: Exception while preparing the app : Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DatabaseException Internal Exception: java.sql.SQLException: Error in allocating a connection. Cause: Connection could not be allocated because: java.net.ConnectException : Error connecting to server localhost on port 1527 with message Connection refused. Error Code: 0. Please see server.log for more details. WebApplication1/nbproject/build-impl.xml:721: The module has not been deployed. See the server log for details. BUILD FAILED (total time: 2 seconds)
I already turn on the Glassfish server and select Glassfish as the server when creating this project, but it looks like the server is denying the connection.
source share