Fixed a bug in saving entities via PUT.

This commit is contained in:
Jon Brisbin
2012-05-10 07:06:28 -05:00
parent 27322ddcf9
commit d177cc7753
2 changed files with 33 additions and 34 deletions

View File

@@ -100,7 +100,7 @@ This would result in a link value of:
### Hiding certain Repositories, query methods, or fields
You may not want a certain Repository, a query method on a Repository, or a field of your entity to be exported at all. To tell the exporter to not export your these items, annotate them with `@RestResource` and set `exported = false`.
You may not want a certain Repository, a query method on a Repository, or a field of your entity to be exported at all. To tell the exporter to not export these items, annotate them with `@RestResource` and set `exported = false`.
For example, to skip exporting a Repository:
@@ -121,7 +121,6 @@ To skip exporting a query method:
Or to skip exporting a field:
@Entity
@RestResource(exported = false)
public class Person {
@Id @GeneratedValue private Long id;
@OneToMany