我试图在独立模式下使用hibernate和hsqldb运行基本的Java桌面应用程序 当我运行我的应用程序时,我收到此错误
java.sql.SQLInvalidAuthorizationSpecException: invalid authorization specification - not found: SA
请帮助
注意:我使用netbeans IDE
我尝试这个例子hibernate annotation
这是我的hibernate conf文件:
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
<property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
<property name="hibernate.connection.url">
jdbc:hsqldb:C:\Users\Desktop\testdb</property>
<property name="connection.pool_size">1</property>
<property name="show_sql">true</property>
<property name="hbm2ddl.auto">create</property>
答案 0 :(得分:0)
提供username
和password
,您将不会收到该错误。