作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
每当我尝试通过 ANT 脚本 运行代码时,都会收到此错误“错误: package com.mongodb 不存在”当我在 Eclipse 中运行代码时,它执行成功,当我通过 ANT 脚本执行代码时,出现此错误。我已将 mongoDB jar 包含在项目中。
错误 -“com.mongodb 包不存在”
build.xml -
<!-- Sets variables which can later be used. -->
<!-- The value of a property is accessed via ${} -->
<property name="src.dir" location="src" />
<property name="build.dir" location="bin" />
<property name="dist.dir" location="dist" />
<property name="docs.dir" location="docs" />
<!-- Deletes the existing build, docs and dist directory -->
<target name="clean">
<delete dir="${build.dir}" />
<delete dir="${docs.dir}" />
<delete dir="${dist.dir}" />
</target>
<!-- Creates the build, docs and dist directory -->
<target name="makedir">
<mkdir dir="${build.dir}" />
<mkdir dir="${docs.dir}" />
<mkdir dir="${dist.dir}" />
</target>
<path id="master-classpath">
<pathelement path="./lib/mongo-2.10.1.jar" >
</pathelement>
</path>
<!-- Compiles the java code (including the usage of library for JUnit -->
<target name="compile" depends="clean, makedir">
<javac srcdir="${src.dir}" destdir="${build.dir}" includeantruntime="false">
<classpath refid="master-classpath" />
</javac>
</target>
<!-- Creates Javadoc -->
<target name="docs" depends="compile">
<javadoc packagenames="src" sourcepath="${src.dir}" destdir="${docs.dir}">
<!-- Define which files / directory should get included, we include all -->
<fileset dir="${src.dir}">
<include name="**" />
</fileset>
</javadoc>
</target>
<!--Creates the deployable jar file -->
<target name="jar" depends="compile">
<jar destfile="${dist.dir}\CsvReaderExample.jar" basedir="${build.dir}">
<manifest>
<attribute name="Main-Class" value="test.Main" />
</manifest>
</jar>
</target>
<target name="main" depends="compile, jar, docs">
<echo>Hello Ankur - Welcome to Apache Ant!</echo>
<description>Main target</description>
</target>
最佳答案
只需在ant脚本中添加类路径引用即可。您可以看到一个名为
的标签 <classpath>
在此标签内您可以找到另一个标签,
<pathelement path="./lib/rt.jar" />
添加另一个pathelement标签并输入mongodb jar名称。喜欢:- <pathelement path="./lib/com.mongodb.jar" />
并确保相应的 jar 也应该存在于您的 lib 文件夹中。我认为这会很好用。尝试一下并告诉我。
关于java - 如何在 ANT 脚本中包含 MongoDB jar?我应该使用什么样的标签来包含 jar?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27959967/
我是一名优秀的程序员,十分优秀!