java - the controller is saving the image but the image cannot be found in the desired folder ..is my controller correct -
@controller @requestmapping(value = "/admin/room") public class roomcontroller { @autowired private roomservice roomservice; @requestmapping(method = requestmethod.get) public string index(modelmap map) throws sqlexception { map.addattribute("room", roomservice.getall()); return "admin/room/index"; } @requestmapping(value = "/addroom", method = requestmethod.get) public string addroom() throws sqlexception { return "admin/room/addroom"; } @requestmapping(value = "/editroom/{ro_id}", method = requestmethod.get) public modelandview edit(@pathvariable("ro_id") int ro_id) throws sqlexception { modelandview mv = new modelandview("admin/room/editroom"); mv.addobject("room", roomservice.getbyid(ro_id)); return mv; } @requestmapping(value = "/deleteroom/{ro_id}", method = requestmethod.get) public string delete(@pathvariable("ro_id") int ro_id) t...