Technology technology = Technology.find(value);
if (technology == null) {
throw new ViewNotFoundException();
}
ModelMap model = new ModelMap();
model.addAllAttributes(Arrays.asList(technology, License.list(), Status.list()));
return new ModelAndView("/edit", model);
}
@RequestMapping("/image/{value}")
public void image(@PathVariable("value") String value, HttpServletResponse response) throws IOException {