I'm trying to develop a Java application with Maven while using Hibernate with Postgresql database for persistence. I don't understand how I'm supposed to connect the Postgresql drivers to my application. I get that you add dependencies in Maven's pom.xml file, which finds jars from a remote repository, but what about other jars?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
PostgreSQL drivers jars are included in Central Repository of Maven: Just use:
with the appropiate |
|||
|
|
|
You should add these lines into your
You can get the code for the dependency (as well as any other dependency) from maven's central repository http://mvnrepository.com/artifact/postgresql/postgresql/9.1-901.jdbc4 |
|||
|
|