是否可以在weblogic-application.xml中定义应用程序版本?

时间:2012-11-27 12:22:41

标签: java xml weblogic

需要在weblogic-application.xml中定义我们产品的版本。可能吗? 感谢。

2 个答案:

答案 0 :(得分:4)

对于WebLogic,应用程序版本位于清单文件中的Weblogic-Application-Version属性中。

    <manifest file="${dist.dir}/MANIFEST.MF">
        <attribute name="Created-By" value="${user.name}" />
        <attribute name="Created-On" value="${build.timestamp}" />
        <attribute name="Ant-Version" value="${ant.version}" />
        <attribute name="Java-Version" value="${ant.java.version}" />
        <attribute name="Weblogic-Application-Version" value="${project.version}" />
    </manifest>

答案 1 :(得分:2)

我确实增加了清单文件并放置了

Manifest-Version: 1.0
Class-Path:
Created-By: Ronald
Weblogic-Application-Version: v1

在src / META-INF / MANIFEST.MF中创建清单文件并放在文件内容中。您可以通过更改专业版v1,v2等来更改版本。

您可以查看以下链接以查看更多详细信息。

http://andrejusb.blogspot.com/2011/12/how-to-set-ear-version-for-adf.html