-
Notifications
You must be signed in to change notification settings - Fork 117
So you want to (Index)
Adam Tuttle edited this page Jun 26, 2012
·
19 revisions
This page lists a bunch of tasks you might want to complete while coding with Taffy, and links to subpages explaining how you can accomplish each of them. It was created as part of Taffy 1.1, so directions here may not always work for Taffy 1.0.
- Create a dead-simple CRUD (Create, Read, Update, Delete) API for one resource (aka table of data)
- Serialize your data to a format other than the default of JSON
- Serialize your return data to multiple formats (json, xml, ...)
- Require an API key
- Rate-limit access to your API
- Use JSONUtil instead of ColdFusion's native JSON serialization
- Share application variables between your API and your consumer-facing application
- Use Taffy's built-in Dependency Injection to resolve dependencies of your resources
- Use an external bean factory like ColdSpring to resolve dependencies of your resources
- Use an external bean factory (like ColdSpring) to completely manage resources
- Use ColdSpring AOP advice for your resources
- Write your components using ColdFusion 9+ "script component" syntax
- Upload a file via your API