Hibernate: PostgreSQL Driver issue

后端 未结 2 652
情歌与酒
情歌与酒 2021-01-14 13:02

I know that there are similar questions already, but the answers there didn\'t help me. So please would you mind to take a look at my particular question?

I am not v

2条回答
  •  鱼传尺愫
    2021-01-14 13:23

    If you are using maven or gradle.

    You can add this to ur pom.xml for maven

    
    
        org.postgresql
        postgresql
        42.2.4
    
    

    And this for gradle

    // https://mvnrepository.com/artifact/org.postgresql/postgresql
    compile group: 'org.postgresql', name: 'postgresql', version: '42.2.4'
    

提交回复
热议问题