Slide 13
Slide 13 text
Langage de templating : VTL
( Velocity Template Language )
• Directives :
#set, #if, #foreach, …
• Commentaires :
##, #* … *#
• Variables & objets
du modèle :
$xxx, $xxx.yy, $xxx.method()
• Classes Java spécifiques
(si besoin)
Templates Telosys
http://velocity.apache.org/
/**
* REST DTO for entity "${entity.name}"
*
* @author ${AUTHOR}
*
*/
public class ${entity.name}RestDto {
#foreach($attribute in $entity.attributes)
private $attribute.type $attribute.name;
#end