Exemplo n.º 1
0
  @RequestMapping("TMA/{id}/**")
  public void downloadTMA(@PathVariable("id") Long id, HttpServletResponse response)
      throws IOException {
    TinggiMukaAir tma = tinggiMukaAirService.findById(id);
    if (tma == null) return;

    response.setContentType(contentTypeUtils.getContentType(tma.getFilename()));
    tinggiMukaAirService.getBlob(id, response.getOutputStream());
  }