【问题标题】:jdbc ant run build.xml classpathjdbc ant run build.xml 类路径
【发布时间】:2011-09-08 02:58:34
【问题描述】:
    I'm having trouble running from ant.  When I run straight from the class 
    file as follows it compiles and runs

    Jasons-MacBook-Pro:src js$ java Hw5
    Student ID:  1
    First Name:  Jason
    Last Name:  S
    Phone:  555-220-5169
    Email:  js@ucsd.edu
    Personal Tagline:  Never say never

    The following line of code is used when it runs correctly as above
    Connection connection = DriverManager.getConnection("jdbc:derby:/Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/lib/Hw5Db");

    my code

    import java.sql.*;
    import java.util.Enumeration;

    public class Hw5{
       public static void main (String [] args){
          try{
             Connection connection = DriverManager.getConnection("jdbc:derby:/Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/lib/Hw5Db");
             //Connection connection = DriverManager.getConnection("jdbc:derby:Hw5Db");//ant file code
             Statement statement = connection.createStatement();
             ResultSet resultSet = statement.executeQuery("SELECT * FROM STUDENT");

             while(resultSet.next()){
                int studentID = resultSet.getInt("STUDENT_ID");
                String firstName = resultSet.getString("FIRSTNAME");
                String lastName = resultSet.getString("LASTNAME");
                String phone = resultSet.getString("PHONE");
                String email = resultSet.getString("EMAIL");
                String mantra = resultSet.getString("PERSONAL_TAGLINE");
                System.out.println("Student ID:  " + studentID + "\n" + 
                                "First Name:  " + firstName + "\n" + 
                                "Last Name:  " + lastName + "\n" +
                                "Phone:  " + phone + "\n" +
                                "Email:  " + email + "\n" +
                                "Personal Tagline:  " + mantra + "\n");
             }
             resultSet.close();
             statement.close();
             connection.close();         
          }
          catch(SQLException sqle){
             System.err.println("SQL Exception: " + sqle);
          }
       }
    }



    but when I try from my build.xml  i change the following line of code to
    Connection connection = DriverManager.getConnection("jdbc:derby:Hw5Db");

    because i think database jar file (Hw5Db) is in the classpath of my build.xml

    my build.xml


<?xml version="1.0"?>
   <project name="Hw5" default="compile" basedir=".">
   <property environment="env"/>
   <property name="src" value="${basedir}/src"/>
   <property name="bin" value="${basedir}/bin"/>
   <property name="lib" value="${basedir}/lib"/>
   <property name="doc" value="${basedir}/doc"/>
   <property name="build" value="${basedir}/build"/>

   <target name="prepare" description="Setting up temporary directory to support build">
      <mkdir dir="${build}"/>
      <mkdir dir="${bin}"/>
   </target>

   <target name="compile" depends="prepare" description="compile java sources">
      <javac srcdir="${src}" destdir="${build}" includes="**/*.java" listfiles="yes" includeantruntime="false">
      </javac>
   </target>

   <target name="deploy" depends="compile">
      <jar destfile="${bin}/Hw5.jar" basedir="${build}"/>
      <jar destfile="${bin}/Hw5Db.jar" basedir="${lib}"/>
    </target>

    <target name="run" depends="deploy" description="run the project">
       <java fork="true" classname="Hw5">
          <classpath path="${bin}/Hw5.jar"/>
          <classpath path="${bin}/Hw5Db.jar"/>
       </java>
    </target>

    <target name="clean">
       <delete dir="${build}"/>
       <delete dir="${bin}"/>
    </target>
</project>

Jasons-MacBook-Pro:HW5_JDBC jsteindorf$ ant run
    Buildfile: /Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/build.xml

    prepare:
        [mkdir] Created dir: /Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/build
        [mkdir] Created dir: /Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/bin

    compile:
        [javac] Compiling 1 source file to /Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/build
        [javac] /Users/js/Desktop/JavaDevelopmentAnt/HW5_JDBC/src/Hw5.java

    deploy:
          [jar] Building jar: /Users/jsteindorf/Desktop/JavaDevelopmentAnt/HW5_JDBC/bin/Hw5.jar
          [jar] Building jar: /Users/jsteindorf/Desktop/JavaDevelopmentAnt/HW5_JDBC/bin/Hw5Db.jar

    run:
         [java] SQL Exception: java.sql.SQLException: No suitable driver found for jdbc:derby:Hw5Db

    BUILD SUCCESSFUL
    Total time: 2 seconds    

    I'm trying, I just can't get it to work

【问题讨论】:

    标签: jdbc ant classpath build.xml


    【解决方案1】:

    不确定,但也许您需要在使用前注册驱动程序。

    Class.forName("class_of_driver").getInstance();  
    

    之后:

    Connection connection = DriverManager.getConnection("jdbc:derby:./Hw5Db");
    

    【讨论】:

    • 这对于 JavaDB(作为 JDK 的一部分捆绑)不是必需的。
    【解决方案2】:

    java 任务上的重复 classpath 对我来说有点奇怪。请尝试以下方法:

    <java fork="true" classname="Hw5">
         <classpath path="${bin}/Hw5.jar:${bin}/Hw5Db.jar"/>
    </java>
    

    【讨论】:

      【解决方案3】:

      我解决了这个问题,build.xml 没有找到数据库驱动程序

      classpath path="${env.DERBY_HOME}/lib/derby.jar

      classpath path="${env.DERBY_HOME}/lib/derbytools.jar

      和数据库的连接路径应该是

      jdbc:derby:./lib/Hw5Db

      【讨论】:

        猜你喜欢
        • 2012-01-31
        • 1970-01-01
        • 2014-10-30
        • 1970-01-01
        • 2023-04-07
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2012-07-31
        相关资源
        最近更新 更多