|
|
(No se muestra una edición intermedia de otro usuario) |
Línea 1: |
Línea 1: |
− | == Ejemplo ==
| |
| | | |
− | Con los 5 pasos que siguen se puede desplegar un proyecto JAVA en un servidor web, e inicialmente contiene una entidad CLIENTE y sus atributos básicos:
| |
− |
| |
− | 1. Crear carpeta 'helloroo' y posicionarse en ella
| |
− |
| |
− | 2. Copiar el siguiente contenido a un archivo llamado helloroo.roo
| |
− |
| |
− | project --topLevelPackage com.dosideas.helloroo
| |
− | persistence setup --provider HIBERNATE --database HYPERSONIC_IN_MEMORY
| |
− | entity --class ~.domain.Client --testAutomatically
| |
− | field string --fieldName name --notNull --sizeMax 24 --sizeMin 3
| |
− | field string --fieldName surname --notNull --sizeMin 3 --sizeMax 24
| |
− | field date --fieldName birthDate --type java.util.Date --notNull
| |
− | field boolean --fieldName active
| |
− | field number --fieldName numberOfKids --type java.lang.Integer --notNull --max 99
| |
− | controller all --package ~.web
| |
− | perform tests
| |
− | perform eclipse
| |
− |
| |
− | 3. Ejecutar la sentencia
| |
− |
| |
− | script helloroo.roo
| |
− |
| |
− | 4. Ejecutar 'q' (para salir)
| |
− |
| |
− | 5. Ejecutar mvn tomcat:run desde linea de comando.
| |