Please make sure first that you comply to Springfuse's software requirements.

Download the bootstrap pom.xml file to reverse your own database schema

We strongly recommend you to follow the Springfuse Getting Started Tutorial before trying to reverse your own Database Schema.

Reversing an Oracle database ? You must install and configure your Oracle JDBC driver first

1- Right-click on this Maven 2 pom.xml file and save it on you computer.

2- Adjust the JDBC properties in the pom.xml so the springfuse plugin can access to your database meta-data.

3- To reverse your database schema, open a console and from the folder containing the Maven2 pom.xml file, run this maven command:
mvn -PyourDatabaseProfile initialize. For example, if your database profile is 'postgresql', you should run:

mvn -Ppostgresql initialize

4- Sign in on www.springfuse.com site, upload the data-model.springfuse file to start the generation process and download the result: A full blown Java project written for your database!

Download directly a generated project

You can download directly the project that you could generate yourself by following the getting started tutorial.

1- Download and unzip quickstartdb.zip.
2- Open a console, go to the root folder of the project, it contains a pom.xml file.
3- Run 'mvn -Pdb,h2 jetty:run'
4- Open your browser and go to http://localhost:8080/

Then follow the instruction and take the time to review the generated code.