0

ANT Scriptを使用してコードを実行しようとすると、「エラー: パッケージ com.mongodb が存在しません」というエラーが表示されます。Eclipseでコードを実行すると正常に実行され、ANT Script を使用してコードを実行すると、このエラーが発生します。 . プロジェクトに 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>

4

1 に答える 1

1

Ant スクリプトにクラスパス参照を追加するだけです。

  <classpath>

このタグの中に別のタグがあり、

<pathelement path="./lib/rt.jar" />

別のパス要素タグを追加し、mongodb jar 名を入力します。お気に入り:-<pathelement path="./lib/com.mongodb.jar" />

また、それぞれのjarがlibフォルダー内にも存在する必要があることを確認してください。これでうまくいくと思いますので、試してみてください。

于 2015-01-15T09:21:36.323 に答える