Service Properties
There are a few properties you can instantiate the virtual service with or set them afterwards that affect operation. Below you can see a nice chart for them:
Property | Type | Required | Default | Description |
| string | true | The entity name to bind the virtual service with. | |
| string | false |
| The name of the secondary cache region to use when doing queries via this service |
| boolean | false | false | To enable the caching of queries used by this service |
| boolean | false | true | Announce interception events on new() operations and save() operations: ORMPostNew, ORMPreSave, ORMPostSave |
| boolean | false | true | Enables ColdFusion safe transactions around all operations that either save, delete or update ORM entities |
| boolean | false | false | The bit that determines the default return value for |
datasource | string | false | System Default | The default datasource to use for all transactions. If not set, we default it to the system datasource or the one declared in the persistent CFC. |
To create a virtual service you can do this:
Last updated