Tag Documentation

[tag libraries] [tags]

The following document contains a summary of all theJellytag libraries.

Tag Libraries

[tag libraries] [tags]

LibraryDescription
jelly:bean

A tag library for mapping tags to beans using a similar approach to Ant.

jelly:bean

A tag library for mapping tags to beans using a similar approach to Ant.

Tag NameDescription
beanCreates a bean for the given tag which is then either output as a variableor can be added to a parent tag.
beanPropertyCreates a nested property via calling a beans createFoo() method theneither calling the setFoo(value) or addFoo(value) methods in a similar wayto how Ant tags construct themselves.
beandefBinds a Java bean to the given named Jelly tag so that the attributes ofthe tag set the bean properties..

Tags

[tag libraries] [tags]

bean:bean

Creates a bean for the given tag which is then either output as a variableor can be added to a parent tag.

Attribute NameTypeDescription
escapeTextboolean
ignoreUnknownPropertiesboolean
trimboolean

bean:beanProperty

Creates a nested property via calling a beans createFoo() method theneither calling the setFoo(value) or addFoo(value) methods in a similar wayto how Ant tags construct themselves.

Attribute NameTypeDescription
escapeTextboolean
ignoreUnknownPropertiesboolean
trimboolean

bean:beandef

Binds a Java bean to the given named Jelly tag so that the attributes ofthe tag set the bean properties..

Attribute NameTypeDescription
classLoaderjava.lang.ClassLoaderSets the ClassLoader to use to load the class.If no value is set then the current threads context classloader is used.
classNamejava.lang.StringSets the Java class name to use for the tag
escapeTextboolean
methodNamejava.lang.StringSets the methodName.
namejava.lang.StringSets the name of the tag to create
trimboolean