为 web 应用程序创建 jar

发布于 2024-12-11 03:34:35 字数 151 浏览 0 评论 0原文

我正在使用 netbeans 编写 webapp + 过滤器。

为了过滤器,我想生成一个 jar 文件(放置在 tomcat/lib 文件夹中)。

当我编译项目时,它会生成war文件。

有没有办法告诉 netbeans 生成 jar 文件?

i'm using netbeans for writing a webapp + filter.

I want to generate a jar file (to place in tomcat/lib folder) for the sake of the filter.

when i compile the project, it generates war file.

is there a way to tell netbeans to generate a jar file instead?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

幻梦 2024-12-18 03:34:35

您可以将类似的内容添加到您的 build.xml 中:

<target name="-post-compile">
    <jar destfile="${basedir}/dist/my_web_app.jar">
        <fileset dir="${basedir}/build/web/WEB-INF/classes">

        </fileset>
    </jar>
</target>

这将在您的战争旁边构建一个 jar。

编辑:请参阅下面 Ravindra 的答案,了解对此方法的轻微改进。

You can add something like this to your build.xml:

<target name="-post-compile">
    <jar destfile="${basedir}/dist/my_web_app.jar">
        <fileset dir="${basedir}/build/web/WEB-INF/classes">

        </fileset>
    </jar>
</target>

Which will build you a jar alongside your war.

EDIT: See Ravindra's answer below for a slight improvement to this method.

握住我的手 2024-12-18 03:34:35

@DeadPassive 答案的增强 - 您可以使用变量 ${ant.project.name} 获取 Web 应用程序名称

<target name="-post-compile">
    <jar destfile="${basedir}/dist/${ant.project.name}.jar">
        <fileset dir="${basedir}/build/web/WEB-INF/classes">
        </fileset>
    </jar>
</target>

An enhancement to @DeadPassive answer - You can get the web app name using the variable ${ant.project.name}

<target name="-post-compile">
    <jar destfile="${basedir}/dist/${ant.project.name}.jar">
        <fileset dir="${basedir}/build/web/WEB-INF/classes">
        </fileset>
    </jar>
</target>
笛声青案梦长安 2024-12-18 03:34:35

创建一个单独的项目来生成 .jar 文件。在这种情况下,我认为您必须使用终端创建 .jar。据我所知,您无法使用 netbeans IDE 为 Web 项目创建 .jar 文件。

Create a separate project to generate your .jar file. In that case also I think you have to create the .jar using terminal. You can't create a .jar file for a web project using netbeans IDE, as far as I know.

背叛残局 2024-12-18 03:34:35

也许修改 netbeans 使用的 build.xml,在生成的 jar 上添加复制任务。

Maybe modify the build.xml used by netbeans, adding a copy task on the generated jar.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文