User talk:Amartinezh
Última actualización
La versión final está en ZK Studio Essentials: DB Form Builder.
Introducción
Es común que las aplicaciones web operen con base de datos. Un proveedor de datos sirve de puente entre una aplicación y una fuente de datos (data source). Éste es usado para recuperar información de una fuente de datos, y si la información cambia en la interfaz gráfica (UI), el proveedor de datos deberá sincronizar los cambios nuevamente a la fuente de datos.
ZK tiene como objetivo facilitar las cosas. Vamos a hacer la rutina ZK redundantes necesarios para la base de datos. More than data provider, ZK tries to provide a wizard that can generate whole skeleton web application following MVC pattern, working with Spring and JPA.
At the very first stage, the wizard can help developer to generate management web page that is able to perform CRUD(Create, Read, Update, Delete)[1] operation on tables in database easily.
In this smalltalk, we will demo its usage step by step. (This feature is under development, this smalltalk is for demo only.)
Demo: Ejecutando la generación de una aplicación web
In the demo, we add three records into the table. We edited detail of each record, and the added record is shown in the view.
- In the left part, it shows records in list form. Column fields are set in Step 3: Edit Columns in Table List.
- In the right part, it shows detail of each record. Detail fields are set in Step 4: Edit Columns in Detail Maintenance.
- ↑ Create, Read, Update, Delete are the four basic functions of persistent storage.CRUD in wikipedia