SPR-5724: Documentation for RESTful webservice examples slightly incorrect for 3.0.0.M3
This commit is contained in:
parent
9cbc1d502d
commit
d8071acd55
|
|
@ -75,7 +75,7 @@
|
||||||
variable. A Spring controller method to process above example is shown
|
variable. A Spring controller method to process above example is shown
|
||||||
below;</para>
|
below;</para>
|
||||||
|
|
||||||
<programlisting language="java">@RequestMapping("/users/{userid}", method=RequestMethod.GET)
|
<programlisting language="java">@RequestMapping(value="/users/{userid}", method=RequestMethod.GET)
|
||||||
public String getUser(@PathVariable String userId) {
|
public String getUser(@PathVariable String userId) {
|
||||||
// implementation omitted...
|
// implementation omitted...
|
||||||
}</programlisting>
|
}</programlisting>
|
||||||
|
|
@ -93,7 +93,7 @@ public String getUser(@PathVariable String userId) {
|
||||||
<para>The following code snippet shows the use of a single
|
<para>The following code snippet shows the use of a single
|
||||||
<classname>@PathVariable</classname> in a controller method:</para>
|
<classname>@PathVariable</classname> in a controller method:</para>
|
||||||
|
|
||||||
<programlisting language="java">@RequestMapping("/owners/{ownerId}", method=RequestMethod.GET)
|
<programlisting language="java">@RequestMapping(value="/owners/{ownerId}", method=RequestMethod.GET)
|
||||||
public String findOwner(<emphasis role="bold">@PathVariable</emphasis> String ownerId, Model model) {
|
public String findOwner(<emphasis role="bold">@PathVariable</emphasis> String ownerId, Model model) {
|
||||||
Owner owner = ownerService.findOwner(ownerId);
|
Owner owner = ownerService.findOwner(ownerId);
|
||||||
model.addAttribute("owner", owner);
|
model.addAttribute("owner", owner);
|
||||||
|
|
@ -114,7 +114,7 @@ public String findOwner(<emphasis role="bold">@PathVariable</emphasis> String ow
|
||||||
name of the URI Template variable name to bind to in the @PathVariable
|
name of the URI Template variable name to bind to in the @PathVariable
|
||||||
annotation. For example</para>
|
annotation. For example</para>
|
||||||
|
|
||||||
<programlisting language="java">@RequestMapping("/owners/{ownerId}", method=RequestMethod.GET)
|
<programlisting language="java">@RequestMapping(value="/owners/{ownerId}", method=RequestMethod.GET)
|
||||||
public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId") String ownerId, Model model) {
|
public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId") String ownerId, Model model) {
|
||||||
// implementation omitted
|
// implementation omitted
|
||||||
}
|
}
|
||||||
|
|
@ -124,7 +124,7 @@ public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId"
|
||||||
so you may also use a controller method with the signature shown
|
so you may also use a controller method with the signature shown
|
||||||
below</para>
|
below</para>
|
||||||
|
|
||||||
<programlisting language="java">@RequestMapping("/owners/{ownerId}", method=RequestMethod.GET)
|
<programlisting language="java">@RequestMapping(value="/owners/{ownerId}", method=RequestMethod.GET)
|
||||||
public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId") String theOwner, Model model) {
|
public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId") String theOwner, Model model) {
|
||||||
// implementation omitted
|
// implementation omitted
|
||||||
}</programlisting>
|
}</programlisting>
|
||||||
|
|
@ -132,7 +132,7 @@ public String findOwner(<emphasis role="bold">@PathVariable</emphasis>("ownerId"
|
||||||
<para>Multiple @PathVariable annotations can be used to bind to
|
<para>Multiple @PathVariable annotations can be used to bind to
|
||||||
multiple URI Template variables as shown below:</para>
|
multiple URI Template variables as shown below:</para>
|
||||||
|
|
||||||
<programlisting language="java">@RequestMapping("/owners/{ownerId}/pets/{petId}", method=RequestMethod.GET)
|
<programlisting language="java">@RequestMapping(value="/owners/{ownerId}/pets/{petId}", method=RequestMethod.GET)
|
||||||
public String findPet(<emphasis role="bold">@PathVariable</emphasis> String ownerId, <emphasis
|
public String findPet(<emphasis role="bold">@PathVariable</emphasis> String ownerId, <emphasis
|
||||||
role="bold">@PathVariable</emphasis> String petId, Model model) {
|
role="bold">@PathVariable</emphasis> String petId, Model model) {
|
||||||
Owner owner = ownerService.findOwner(ownderId);
|
Owner owner = ownerService.findOwner(ownderId);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue