Hi, I am working with saving the image in the database, I accept the image as multi-page and try to convert it to
Blob type. I am doing this method:
Blob blob=Hibernate.getLobCreator(sessionFactory.getCurrentSession()).createBlob(multipartFile.getInputStream(),multipartFile.getSize());
But we get a Nullpointer Exception While Executing . file It is not possible to convert multipart to Blob , any other method to save the image in the database.
source share