-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Stefan Liebenberg edited this page Apr 27, 2014
·
11 revisions
##Getting SoyAnnotations:
SoyAnnotations is in maven central. Just add the following dependency.
<dependency>
<groupId>com.github.stefanliebenberg</groupId>
<artifactId>soy-annotations</artifactId>
<version>1.1</version>
</dependency>
You can find the latest version by checking search.maven.org
You should be able to find links to the latest jar files by using search.maven.org
##Features:
- Convert to Soy Data
- Easily convert Your classes to SoyData by annotating the class, fields and methods.
- Custom Converters and Renderers.
- Convert your classes and basic types into Map<String, Object>, for use as json data.
- Render a class into a template by simply annotating the template name to the class.
##Example Cases:
- Annotated class for soyData ( example soon )
- Rendering a class to soy template
- Custom Converter ( example soon )
- Custom Renderer ( example soon )