*/
@RequestMapping // default action
public void processUpload(PetDescription upload, @RequestParam("selectedPet") int petKey) {
byte[] file = upload.getFile();
String description = new String(file);
Pet pet = this.petService.getPet(petKey);
pet.setDescription(description);
this.petService.savePet(pet);
}