Where to place hibernate.cfg.xml?

前端 未结 9 847
渐次进展
渐次进展 2020-12-02 22:40

My project is like this:

/src/main/java
     -thegamers
         -app.java
         -hibernateutil.java

can someone tell me where to put th

9条回答
  •  时光取名叫无心
    2020-12-02 22:46

    Place hibernate.cfg.xml under src/ folder or explicitly mention the path in code as:

    new Configuration.configure("path of hibernate.cfg.xml").buildsessionfactory()
    

提交回复
热议问题