Guest User

Untitled

a guest
Jan 21st, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. @Lob
  2. @Column(length = 100000)
  3. private byte[] foto;
  4.  
  5. public byte[] getFoto() {
  6. return foto;
  7. }
  8.  
  9. public void setFoto(byte[] foto) {
  10. this.foto = foto;
  11. }
  12.  
  13. @GetMapping("/view")
  14. public ModelMap viewVehicle(@RequestParam(value = "id", required = false) Vehicle vehicle, Model model) {
  15. if (vehicle == null) {
  16. vehicle = new Vehicle();
  17. }
  18.  
  19. return new ModelMap("vehicle", vehicle);
  20. }
  21.  
  22. <img th:src="*{'data:image/png;base64,'+ foto}" />
Add Comment
Please, Sign In to add comment