How to read manifest.mf from POJO class (not a servlet) instantiated by spring?

拈花ヽ惹草 提交于 2019-12-23 22:55:00

问题


I have a simple service called BuildNumberService which would be instantiated by spring.

I'm trying to find the cleanest code for the class to find out the MANIFEST.MF file from the jar file it has been packaged into.

The code has to run inside a servlet container.

@Service
public class BuildNumberService {

    private static final String IMPLEMENTATION_BUILD = "Implementation-Build";

    private String version = null;

    public BuildNumberService() {

      // find correct manifest.mf
      // ?????


      // then read IMPLEMENTATION_BUILD attributes and caches it.
       Attributes mainAttributes = mf.getMainAttributes();
       version = mainAttributes.getValue(IMPLEMENTATION_BUILD);
    }

    public String getVersion() {
        return this.version;
    }
}

How would you do that ?

Edit: Actually, what I'm trying to do, is, find a resource by name which sits in the same package as the actual class.


回答1:


Well if you know the jar is on the file system (e.g. not inside a war) and you also know that the security manager gives you the permission to access a class' protection domain, you can do it like this:

public static InputStream findManifest(final Class<?> clazz) throws IOException,
    URISyntaxException{
    final URL jarUrl =
        clazz.getProtectionDomain().getCodeSource().getLocation();
    final JarFile jf = new JarFile(new File(jarUrl.toURI()));
    final ZipEntry entry = jf.getEntry("META-INF/MANIFEST.MF");
    return entry == null ? null : jf.getInputStream(entry);
}



回答2:


I've found another solution to load MANIFEST.MF without referencing servlet context, by just using Spring Framework.

I used this configuration with Spring 3.1.2.RELEASE, but I believe it should work fine on later releases.

First, write the following bean in your applicationContext.xml

<bean class="java.util.jar.Manifest" id="manifest">
    <constructor-arg>
        <value>/META-INF/MANIFEST.MF</value>
    </constructor-arg>  
</bean>

You should notice that the constructor argument from Manifest class accepts an InputStream as a parameter, however, you don't need to worry about that 'cause Spring converts the provided value to match constructor arguments. Moreover, by starting the path with a slash / (/META-INF/...), Spring looks for this file on a servlet context object whereas starting with classpath: prefix it steers Spring to look over the classpath to find the requested resource.

Second, declare the aforementioned bean in your class:

@Autowired
@Qualifier("manifest")
private Manifest manifest;

My MANIFEST.MF is under the folder $WEBAPP_ROOT/META-INF/ and I've successfully tested this solution on Apache Tomcat 7 and WildFly 8.




回答3:


Manifest mf = new Manifest();
Resource resource = new ClassPathResource("META-INF/MANIFEST.MF");
                    InputStream is= resource.getInputStream();
                        mf.read(is);
                        if (mf != null) {
                            Attributes atts = mf.getMainAttributes();
                            implementationTitle = atts.getValue("Implementation-Title");
                        }


来源:https://stackoverflow.com/questions/3907737/how-to-read-manifest-mf-from-pojo-class-not-a-servlet-instantiated-by-spring

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!