I am planning to deploy GlassFish v3 open source edition to a production environment. It comes with JavaDB (Apache Derby) which is just want I need. The only problem is that JavaDB is not started by default when GlassFish starts. I would have to go to the command line and enter:

asadmin start-database

Is there away to make the database start automatically when the server (GlassFish) starts? I hated doing that manually everytime while I was developing my application and I certainly don't want to do that in production.

Thanks in advance

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

Once you go into production, you can start the db once and just leave it running, regardless of the state of the app server.

You could create a shell script to 'bundle' start-domain and start-database into a single uber-start command.

link|improve this answer
This is what I was planning to do since there is nothing else is possible. Thanks for the response. – del.ave Aug 18 '10 at 20:48
feedback

This is a little dated but there's a checkbox in the GlassFish section in Eclipse's preferences titled "Start the JavaDB database process when starting GlassFish Server". I am running Eclipse Indigo SR1.

link|improve this answer
feedback

This is what I do, I deploy this to the server packaged as an EJB JAR. This will enable the Derby server to be started as its own enterprise application.

import java.io.PrintWriter;

import javax.annotation.PostConstruct;
import javax.ejb.Singleton;
import javax.ejb.Startup;

import org.apache.derby.impl.drda.NetworkServerControlImpl;

@Singleton
@Startup
public class LocalDatabase {

private NetworkServerControlImpl networkServerControlImpl = null;

@PostConstruct
private void init() throws Exception {
    networkServerControlImpl = new NetworkServerControlImpl();
    networkServerControlImpl.start(new PrintWriter(System.out));
}

}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.