hibernate 映射文件 schema catalog 参数 导致的问题

<hibernate-mapping>
    <class name="com.lich.User" table="t_user" schema="erp" catalog="ERP">

 

假如你在hibernate映射文件中设置了 schema catalog这些参数 的话

 

那么即使你把总映射文件的

<property name="hibernate.connection.url">
   jdbc:jtds:sqlserver://localHost:1433/ERP
  </property>

 

改成

 

<property name="hibernate.connection.url">
   jdbc:jtds:sqlserver://localHost:1433/ERP2 
  </property> 

 

他仍然会去查找ERP库  所以最好不要设置

你可能感兴趣的:(Hibernate,jdbc)