Skip to content

wstockton/FW1-DI1-Application-Generator

 
 

Repository files navigation

FW1-DI1-Application-Generator

This code generator uses Sean Corfield's Framework One and Direct Inject One to create a complete CRUD application by reading your database tables (developed and tested with Microsoft SQL Server only). In addition to the standard Bean, Controller, Service, and DAO for each table, this generator will also create the Application.cfc file, default layout and several table specific views including a data table using jQuery DataTable, view, create and update pages as well as a combination view/update page. The layout of the pages and elements is done using PureCSS (http://www.purecss.io).

Database Creation and Conventions

A few conventions have been included to help decrease the post generation modifications.

Database Conventions

  1. Table Names should be plural (ie: books, genres).
  2. All tables must have a single primary key (either int or uniqueidentifyer [aka guid]) defined within sql server.
  3. Foreign key columns should be named using the singular version of the coresponding table with the suffix of "_fk". For example if the books table is linked to the genres table the foreign key column in the books table should be "genre_fk".
  4. Table and field names should be in capitol or camel case without special characters between the words. Menu items and form labels are generated from these fields; thus, a database column "socialSecurityNumber" will have a form label of "Social Security Number".
  5. Any field of a table that includes the word "Name" (case sensitive) will be treated as the title record. For example the title on a view page with two fields titled "firstName" and "lastName" will show a title using the values of the first and last name fields. For the title of a book you should name the column "bookName" to have the title of the book treated as the title of the record.

Automatic Generated Code Special Case

NOTE ABOUT TEXTAREAS: The generated code is displayed in form text area fields. Because of this if the generator creates any text area fields (generated for database columns of type char, varchar, text or any variation of those with a text size of over 250) the closing text area is created with a space between the closing slash and the tag name otherwise the generated code causes a conflict with the text area used to display the code. When the code for a create, update or viewedit page is copied over you will need to simply do a find/replace for all closing text area tags and remove the space.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages

  • ColdFusion 82.2%
  • CSS 16.5%
  • HTML 1.3%