Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Talk:EclipseLink/Development/2.4.0/JPA-RS/REST-API

< Talk:EclipseLink/Development/2.4.0
Revision as of 11:12, 21 December 2011 by Unnamed Poltroon (Talk) (New page: * PUT should not be used for INSERT. PUT is supposed to be itempotent and because of the possibility of sequencing, creates are not itempotent. ** We should use PUT for update ** We shoul...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
  • PUT should not be used for INSERT. PUT is supposed to be itempotent and because of the possibility of sequencing, creates are not itempotent.
    • We should use PUT for update
    • We should use POST for insert

Back to the top