Load maven resources folder image

-1

Good evening. How can I load an image in the resources / static / images folder of the maven file structure in java?

    
asked by berni10 27.12.2016 в 22:07
source

1 answer

0

Within the Maven life cycle, more specifically in the Package phase, Maven copies all the files in the resources a target / classes folder, so you must be able to access the images using the relative path 'static / images / logo. jpg '.

    
answered by 27.12.2016 в 22:39