fixing a RequestMapping issue

caused images not to be loaded
This commit is contained in:
Mic 2013-01-16 11:02:37 +08:00
parent e9b6aff0d4
commit ece1a7a7ac

View file

@ -51,7 +51,7 @@ public class PetController {
dataBinder.setDisallowedFields("id");
}
@RequestMapping( method = RequestMethod.GET)
@RequestMapping(value="/owners/{ownerId}/pets/new", method = RequestMethod.GET)
public String initCreationForm(@PathVariable("ownerId") int ownerId, Model model) {
Owner owner = this.clinic.findOwner(ownerId);
Pet pet = new Pet();