Forge is JBoss's rapid application development tool. A command line based tool that is embedded in JBoss Developer Studio 5. Run a whole script of commands to render a complete application. For more information on how to Get Started with JBoss, please visit www.jboss.org/developer, follow us on Twitter @jbossdeveloper or you can follow me directly @burrsutter persistence setup --provider HIBERNATE --container JBOSS_AS7 ; @/* Create some JPA @Entities on which to base our application */; entity --named Customer --package ~.model; field string --named firstName; field string --named lastName; field temporal --type DATE --named birthDate;