4
我正在開發Spring和Hibernate項目,我需要進行逆向工程。在eclipse中從SQL Server Express R2進行Hibernate逆向工程
我與SQL Server Express R2工作2008年
我已經生成的,包含此源代碼(hibernate.cfg.xml中)在Hibernate控制檯配置文件:
<?xml version="1.0" encoding="UTF-8"?>
<!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.driver_class">net.sourceforge.jtds.jdbc.Driver</property>
<property name="hibernate.connection.password">sa</property>
<property name="hibernate.connection.url">jdbc:jtds:sqlserver://localhost:1433/supervision</property>
<property name="hibernate.connection.username">sa</property>
<property name="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</property>
<property name="hibernate.default_schema">dbo</property>
</session-factory>
</hibernate-configuration>
我之後試圖生成Hibernate反向工程文件(reveng.xml)。
我指定的配置,但我總是得到這個問題:
閱讀模式錯誤得到數據庫的元數據
只是爲了澄清一些事情,有一些類似的話題。我閱讀了他們,但他們沒有解決我的問題。
有人可以幫我嗎? – Rodrigo