Hibernate不是来自https域的连接

时间:2018-02-02 05:57:44

标签: java hibernate amazon-elastic-beanstalk

在我的本地服务器上,我能够对服务器进行api调用,并且可以看到值正在保存到数据库中。 但是当它上线并使用实际的域名地址时,我收到以下错误:

java.lang.NoClassDefFoundError: Could not initialize class d.d.util.HibernateUtil

我的HibernateUtil.java是:

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;


public class HibernateUtil {

    private static final SessionFactory sessionFactory = buildSessionFactory();



       private static SessionFactory buildSessionFactory() {
            try {
                // Create the SessionFactory from hibernate.cfg.xml
                return new Configuration().configure().buildSessionFactory();
            }
            catch (Throwable ex) {
                // Make sure you log the exception, as it might be swallowed
                System.err.println("Initial SessionFactory creation failed." + ex);
                throw new ExceptionInInitializerError(ex);
            }
        }

        public static SessionFactory getSessionFactory() {
            return sessionFactory;
        }

        public static void shutdown() {
            // Close caches and connection pools
            getSessionFactory().close();
        }

    }

来自亚马逊的日志正在向我展示其他内容:

Exception occurred during processing request: uid is required
java.lang.Exception: uid is required
    at d.d.Pamper.action.GetUserProfileAction.execute(GetUserProfileAction.java:16) ~[classes/:?]

这是我自己的例外,如果UID为null,我就会抛出。

2 个答案:

答案 0 :(得分:1)

NoClassDefFoundError表示HibernateUtil缺少某些依赖类。看起来,您在实时系统中缺少org.hibernate.*个类。

答案 1 :(得分:0)

我使用的是亚马逊的数据库,需要进行一些配置才能从互联网上访问。