<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    hibernate新手求助!!

    今天下午學(xué)習(xí)使用hibernate,跟著視頻做,可是控制臺老報(bào)這個錯誤
    02:03:12,171  WARN UserSuppliedConnectionProvider:23 - No connection properties specified - the user must supply JDBC connections
    02:03:12,171 ERROR SchemaExport:202 - schema export unsuccessful
    java.lang.UnsupportedOperationException: The user must supply a JDBC connection
     at org.hibernate.connection.UserSuppliedConnectionProvider.getConnection(UserSuppliedConnectionProvider.java:30)
     at org.hibernate.tool.hbm2ddl.ManagedProviderConnectionHelper.prepare(ManagedProviderConnectionHelper.java:28)
     at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:180)
     at org.hibernate.tool.hbm2ddl.SchemaExport.create(SchemaExport.java:133)
     at com.test.hibernate.ExportDB.main(ExportDB.java:15)

    視頻就能運(yùn)行成功,我的就不行,很是郁悶,

    hibernate.cfg.xml配置如下:
            

                <!DOCTYPE hibernate-configuration PUBLIC
                 "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
                 "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

                <hibernate-configuration>
                 <session-factory>
                      <property name="hibernate.connection.url ">jdbc:mysql:///localhost/hibernate_first</property>
                      <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
                      <property name="hibernate.connection.username">root</property>
                      <property name="hibernate.connection.password">root</property>
                      <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
      
                      <mapping resource="com/test/hibernate/User.hbm.xml"/>
                 </session-factory>
            </hibernate-configuration>

    實(shí)體類User的映射文件配置:
    <?xml version="1.0"?>
    <!DOCTYPE hibernate-mapping PUBLIC
     "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
     "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
    <hibernate-mapping>
     <class name="com.test.hibernate.User">
      <id name="id">
       <generator class="uuid"/>
      </id>
      
      <property name="userName"/>
      <property name="password"/>
      <property name="createDate"/>
      <property name="expireDate"/>
     </class>
     
    </hibernate-mapping>

    下面是連接數(shù)據(jù)庫的類:

    package com.test.hibernate;

    import org.hibernate.cfg.Configuration;
    import org.hibernate.tool.hbm2ddl.SchemaExport;

    public class ExportDB {


     public static void main(String[] args) {
      
      Configuration cfg = new Configuration().configure();
      
      SchemaExport export = new SchemaExport(cfg);
      
      export.create(true, true);
     }

    }


    希望路過高手不吝指導(dǎo)一下,感激不盡!!!!

    posted on 2008-12-30 02:23 anyStar 閱讀(1783) 評論(8)  編輯  收藏

    評論

    # re: hibernate新手求助!! 2009-03-10 14:39 222

    換個 表名  回復(fù)  更多評論   

    # re: hibernate新手求助!! 2009-03-10 19:44 xxxxx

    和你一樣的問題,不知道你能發(fā)下你的QQ么我加您,互相學(xué)習(xí)下.
    看來我們都在看,勇哥的視頻.  回復(fù)  更多評論   

    # re: hibernate新手求助!! 2009-03-13 13:20 mm

    我也是一樣的問題 頭很大  回復(fù)  更多評論   

    # re: hibernate新手求助!![未登錄] 2009-03-20 22:59 yang

    我現(xiàn)在也在看王勇老師的視頻,我QQ269676751,大家一起學(xué)習(xí)啊  回復(fù)  更多評論   

    # re: hibernate新手求助!! 2009-04-01 16:41 木子日京

    我也遇到了類似的問題,剛開始時還可以運(yùn)行,可是我把Mysql重裝了下就不行了,提示錯誤是
    16:40:18,796 ERROR SchemaExport:202 - schema export unsuccessful
    java.sql.SQLException: No suitable driver
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:110)
    at org.hibernate.tool.hbm2ddl.ManagedProviderConnectionHelper.prepare(ManagedProviderConnectionHelper.java:28)
    at org.hibernate.tool.hbm2ddl.SchemaExport.execute(SchemaExport.java:180)
    at org.hibernate.tool.hbm2ddl.SchemaExport.create(SchemaExport.java:133)
    at com.ExprotDB.main(ExprotDB.java:15)
    不知道怎么弄了!  回復(fù)  更多評論   

    # re: hibernate新手求助!! 2009-04-01 18:40 木子日京

    我的問題解決了呢!我看了一下你的配置文件,
    <property name="hibernate.connection.url ">jdbc:mysql:///localhost/hibernate_first</property>改成
    <property name="hibernate.connection.url ">jdbc:mysql://localhost/hibernate_first</property>試試,還有就是你的mysql的用戶名和密碼一下要正確哦!
      回復(fù)  更多評論   

    # re: hibernate新手求助!![未登錄] 2009-12-07 22:16 ice

    same problem we meet!  回復(fù)  更多評論   

    # re: hibernate新手求助!! 2011-09-26 11:10 lbblove

    @222
    hi,我也遇到這個問題,能加我qq么,296291859,以后多多向你請教。請問最后怎么解決呢···我也在看王勇老師的視頻··  回復(fù)  更多評論   


    只有注冊用戶登錄后才能發(fā)表評論。


    網(wǎng)站導(dǎo)航:
     
    <2011年9月>
    28293031123
    45678910
    11121314151617
    18192021222324
    2526272829301
    2345678

    導(dǎo)航

    統(tǒng)計(jì)

    常用鏈接

    留言簿(2)

    隨筆分類

    隨筆檔案

    文章檔案

    搜索

    最新評論

    閱讀排行榜

    評論排行榜

    主站蜘蛛池模板: 久久精品亚洲福利| 亚洲人成色7777在线观看不卡| 国产AV无码专区亚洲AVJULIA| 日韩精品无码永久免费网站| 日产乱码一卡二卡三免费| 亚洲色丰满少妇高潮18p| 欧美男同gv免费网站观看| 亚洲av极品无码专区在线观看| 黄页网站免费在线观看| 亚洲a级片在线观看| 毛片a级毛片免费观看免下载 | 无码人妻一区二区三区免费n鬼沢| 亚洲无线码在线一区观看| 在线免费播放一级毛片| 亚洲国产精品免费视频| 和日本免费不卡在线v| 亚洲sm另类一区二区三区| 亚洲精品成人a在线观看| 四虎影视无码永久免费| 亚洲视频免费在线看| 国色精品卡一卡2卡3卡4卡免费| 久久亚洲国产最新网站| 亚洲AV无码乱码在线观看性色扶| 国产精品福利在线观看免费不卡| 亚洲av综合avav中文| 日韩吃奶摸下AA片免费观看| 国产亚洲视频在线| 亚洲AV乱码久久精品蜜桃| 日韩一区二区a片免费观看 | 亚洲精品在线免费观看| 亚洲免费综合色在线视频| 亚洲午夜av影院| 亚洲免费观看在线视频| 美女扒开屁股让男人桶爽免费| 久久久久亚洲精品成人网小说| 性感美女视频免费网站午夜| 中文字幕乱码系列免费| 亚洲人成电影网站| 国产亚洲人成网站观看| 美女被免费视频网站a国产| a级男女仿爱免费视频|