How to show image from H2 database to Thymeleaf?
问题 I'm doing spring boot, using H2 database, thymeleaf view. I have a form to upload image to save into H2 database(byte[] image), In thymeleaf, how to show image? anyone tell me the solution? controller: @RequestMapping(value = "user/new", method = RequestMethod.GET) public String newBeans(Model model) { model.addAttribute("usersss", new Beans()); return "userform"; } @RequestMapping(value = "user", method = RequestMethod.POST) public String saveUser(Beans beans) { RepositoryUser.save(beans);