java.lang.UnsupportedOperationException: The application must supply JDBC connections

后端 未结 1 805
天涯浪人
天涯浪人 2021-01-01 16:15

I write some code to test my configuration of Hibernate.But I come across such error message:

java.lang.UnsupportedOperationException: The application must s         


        
相关标签:
1条回答
  • 2021-01-01 16:24

    The hibernate property names in the configuration file are case sensitive.

    <property name="hibernate.connection.URL">
    

    should be

    <property name="hibernate.connection.url">
    
    0 讨论(0)
提交回复
热议问题