Hibernate异常:页面未找到

idfiyjo8  于 2023-03-30  发布在  其他
关注(0)|答案(1)|浏览(94)

在我的servlet上工作时,我遇到了这个问题:

org.hibernate.HibernateException: /hibernate.cfg.xml not found
    org.hibernate.internal.util.ConfigHelper.getResourceAsStream(ConfigHelper.java:173)
    org.hibernate.cfg.Configuration.getConfigurationInputStream(Configuration.java:2093)
    org.hibernate.cfg.Configuration.configure(Configuration.java:2074)
    org.hibernate.cfg.Configuration.configure(Configuration.java:2054)
    com.dede.app1st.controller.AddUser.doPost(AddUser.java:26)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:650)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:731)
    org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)

出现错误的原因是什么?如何修复?

bksxznpy

bksxznpy1#

hibernate.cfg.xml看起来是在你的类路径根目录中搜索到的,但是它位于子包com.dede.app1st.controller中。把它移到根包应该可以解决这个问题。

相关问题