Skip to content
Snippets Groups Projects
Commit ece1a7a7 authored by Mic's avatar Mic
Browse files

fixing a RequestMapping issue

caused images not to be loaded
parent e9b6aff0
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment