Trying to load an imager from my spring boot app, image is in webapp/images folder but the following does not find it:
URLDataSource source = new URLDataSource(PrintToPdf.class.getResource("images/Elekdirect_Logo.jpg"));
also tried:
url = ClassLoader.getSystemResource("images/Elekdirect_Logo.jpg");
But url is always null - so I'm taking it the file wasn't found.
Any advice is appreciated.
Thanks