You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Action

SQL

REST Verb

HTML Method

URI

Invokes

Parameters

Notes

Create

Insert

PUT

POST

/my-resource

MyResource.create

...

 

Read

Select

GET

GET

/my-resource/-id

MyResource.read

...

aka FindbyId

Update

Update

POST

POST

/my-resource/-id

MyResource.update

id="id", ...

with one or more POST attributes

Delete

Delete

DELETE

POST

/my-resource/-id

MyResource.delete

id="id"

with zero POST attributes (or single delete attribute )

Welcome

Describe

n/a

GET

/my-resource

MyResource.index

...

 

Input for Create

n/a

n/a

GET

/my-resource-input

MyResource.input

...

 

Input for Update

n/a

n/a

GET

/my-resource-input/-id

MyResource.input

id="id", ...

 

Other State Read

n/a

n/a

GET

/my-resource-other(/-id)

MyResource.other

...

 

Other State Change

n/a

n/a

POST

/my-resource-other(/-id)

MyResource.other

...

 

Heuristic Result Matching

  1. (on "success") my-resource-$method (e.g., -create, -read, -update, -delete, -index, -input, -other)
  2. my-resource-$result-code (e.g., "success", "cancel", "input", "error")
  3. $result-code
  4. my-resource

Heuristic Action Matching

  1. MyResource
  2. MyResourceAction
  3. My.resource
  4. MyAction.resource
  5. my-resource/Index
  6. or the package default (ActionSupport)

Settings

  • base.action.packages (action)
  • base.result.location (/WEB-INF/result)
  • create.method (create), read.method (read), update.method (update), delete.method (delete), welcome.method (index)
  • action.name.separator (-)

In the examples, "-id" is the action.name.separator followed by the value of the primary identifier for the resource (/movie/-Thriller).

  • No labels