How to read my META-INF/MANIFEST.MF file in a Spring Boot app?
问题 I'm trying to read my META-INF/MANIFEST.MF file from my Spring Boot web app (contained in a jar file). I'm trying the following code: InputStream is = getClass().getResourceAsStream("/META-INF/MANIFEST.MF"); Properties prop = new Properties(); prop.load( is ); But apparently there is something behind the scenes in Spring Boot that a different manifest.mf is loaded (and not my own located in META-INF folder). Does anyone know how I can read my manifest app in my Spring Boot app? UPDATE: After