如何将版本和内部版本号放在ejb-jar.xml中



我使用Netbeans 8.0.2和Glassfish 4.0(和4.1)来构建一个消息驱动的bean。我没有使用Maven(我的选择是使用它)

有一篇文章将修订版和内部版本号放在build.xml文件中(http://dragly.org/2009/10/11/revision-and-build-numbers-for-your-netbeans-apps/)。这是针对SE应用程序的,我不确定它是否适用于EJB以及如何工作。

我有一个固定的版本号,但需要增加内部版本号。

  1. 在哪里以及如何将EJB的版本号(加上内部版本号)放入?(它应该像1.0.0.buildNumber)(搜索"ejb-jar.xml"plus版本会得到很多2.x、3.x版本的ejb结果)
  2. 如何在EJB中访问此号码?(我想把它作为课堂上的一种资源来访问?)

好吧,我已经想好了:对于build.xml文件中的jar(库、SE等),在关闭</project>标记之前插入以下内容;基于http://www.jug-muenster.de/versioning-and-signing-jar-files-in-netbeans-775/:注意:清单文件有一个非常特定的格式!

<target name="-pre-init">
    <property name="project.name" value="MySEProject" />
    <property name="document.title" value="My SE Project Specification" />
    <property name="document.version" value="1.0" />
    <property name="version.number" value="1.7.0" />
    <buildnumber file="build.num" />
    <tstamp>
        <format property="NOW" pattern="yyyy-MM-dd HH:mm:ss z" />
    </tstamp>
    <exec outputproperty="svna.version" executable="svnversion">
        <arg value="-c" />
        <redirector>
            <outputfilterchain>
                <tokenfilter>
                    <replaceregex pattern="^[0-9]*:?" replace="" flags="g"/>
                    <replaceregex pattern="M" replace="" flags="g"/>
                </tokenfilter>
            </outputfilterchain>
        </redirector>
    </exec>
    <!-- Add the version information to the manifest file -->
    <manifest file="${manifest.file}">
        <attribute name="Package-Title" value="MyCompany/${project.name}" />
        <attribute name="Specification-Title" value="${document.title}" />
        <attribute name="Specification-Version" value="${document.version}" />
        <attribute name="Specification-Vendor" value="MyCompany" />
        <attribute name="Implementation-Title" value="${project.name}" />
        <attribute name="Implementation-Version" value="${halo.version.number}.${build.number}" />
        <attribute name="Implementation-Vendor" value="MyCompany" />
        <attribute name="Revision" value="${svna.version}" />
        <attribute name="Built-By" value="${user.name}" />
        <attribute name="Built-Date" value="${NOW}" />
    </manifest>
</target>
<target name="-post-jar">
    <delete file="${manifest.file}" />
</target>

对于EJB。在(ABC)Enterprise Application文件夹中,按照与上面相同的方式编辑build.xml文件,目标标记名称更改为pre-dist以及清单标记<manifest file="${meta.inf}/MANIFEST.MF">

此外,对于EJB,为了能够编程读取版本号,请编辑ABCejb文件夹中的build.xml文件(其中ABC是EJB项目名称)。目标名称更改为-post-init

读取它的代码(你从你包含的所有库中获得所有清单文件,因此你必须寻找你的清单文件——也许更好的方法是查看URL?):

import java.io.InputStream;
import java.net.URL;
import java.util.Enumeration;
import java.util.jar.Manifest;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
 *
 * @author TungstenX
 */
public class VersionInfo {
    private static final Logger LOG =    Logger.getLogger(VersionInfo.class.getName());
    private static final String PROJECT = "MySEProject";
    private static final String COMPANY = "MyCompany";
    private static Manifest MANIFEST;
    /**
     * Get the version number from the manifest file
     * @return The version number or '--'
     */
    public static String GetVersionNumber() {
        if (MANIFEST == null) {
            try {
                Enumeration<URL> resources = VersionInfo.class.getClassLoader().getResources("META-INF/MANIFEST.MF");
                while (resources.hasMoreElements()) {
                    URL url = resources.nextElement();
                    try(InputStream is = url.openStream()) {
                        Manifest tmpManifest = new Manifest(is);
                        for (Object o : tmpManifest.getMainAttributes().keySet()) {
                            if (o.toString().equals("Package-Title") 
                                    && tmpManifest.getMainAttributes().getValue(o.toString()).startsWith(COMPANY)
                                    && tmpManifest.getMainAttributes().getValue(o.toString()).endsWith(PROJECT)) {
                                MANIFEST = tmpManifest;
                            } 
                        }
                    } catch (Exception e) {
                        LOG.log(Level.SEVERE, "Error while reading manifest files: {0}", e.toString());
                    }
                }
            } catch (Exception e) {
                LOG.log(Level.SEVERE, "Error while reading manifest files: {0}", e.toString());
            }
        }
        if(MANIFEST != null) {
            return MANIFEST.getMainAttributes().getValue("Implementation-Version");
        } else {
            return "--";
        }
    }

注意:MANIFEST.MF文件的目标名称和位置的差异!

相关内容

  • 没有找到相关文章

最新更新