0

新しいレコードを mysql データベースに挿入しようとしています。Hibernate の挿入ステートメントはログに出力されますが、データベースは新しいレコードを挿入しません。投稿されたエラーはありませんが、rpcService 呼び出しで onFailure メッセージが出力されます。また、私のアプリはデータベースから問題なく読み取るため、アプリの他の部分はうまく機能します。以下はコードと構成です。

hibernate.cfg.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC
            "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
            "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.password">xxxxxxxx</property>
    <property name="hibernate.connection.url">jdbc:mysql://xxxxxxxxx.us-west-1.rds.amazonaws.com/xxxxxxx</property>
    <property name="hibernate.connection.username">xxxxxx</property>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

    <!-- configuration pool via c3p0-->
            <property name="c3p0.acquire_increment">1</property>
            <property name="c3p0.idle_test_period">100</property> <!-- seconds -->
            <property name="c3p0.max_size">20</property>
            <property name="c3p0.max_statements">20</property>
            <property name="c3p0.min_size">5</property>
            <property name="c3p0.timeout">1800</property> <!-- seconds -->

    <property name="transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
    <property name="current_session_context_class">thread</property>
    <property name="hibernate.show_sql">true</property>
    <!--  <property name="hbm2ddl.auto">update</property>-->
    <mapping class="com.local.shared.School"/>
    <mapping class="com.local.shared.SchoolVideo"/>
    <mapping class="com.local.shared.Category"/>
    <mapping class="com.local.shared.Administrator"/>
</session-factory>
</hibernate-configuration>

rpcService 呼び出し:

@Override
public void doUpdateSchoolVideo(SchoolVideo schoolVideo) {
    rpcService.updateSchoolVideo(schoolVideo,
            new AsyncCallback<SchoolVideo>() {

                public void onFailure(Throwable caught) {
                    caught.printStackTrace();
                    new Exception().printStackTrace();
                    Window.alert("Couldn't update schoolVideo info!");
                }

                public void onSuccess(SchoolVideo schoolVideo) {
                    System.out.println("SchoolVideo table updated!");
                    loadSubmittedVideos(Utilities.getSchoolPage()
                            .getSchool_name());
                }
            });
}

rpcService の実装:

@Override
public SchoolVideo updateSchoolVideo(SchoolVideo schoolVideo) {
    System.out.println("Attempting to save the schoolVideo information"
            + "\n");
    Transaction tx = null;
    Session session = SessionFactoryUtil.getInstance().getCurrentSession();
    HttpServletRequest httpServletRequest = this.getThreadLocalRequest();
    HttpSession httpSession = httpServletRequest.getSession(false);
    School sessionSchool = (School) httpSession.getAttribute("school");
    System.out.println("\n updateSchoolVideo school in session is " +
                        " = " + sessionSchool.getSchool_name() + "\n");

    try {
        tx = session.beginTransaction();

        School school = sessionSchool;
        System.out.println("\n cachedSchool = " + school + "\n");
        School querySchool = (School) session.get(School.class,
                new Integer(school.getId()));
        System.out.println(querySchool.getId() + " equals id");
        schoolVideo.setSchool_id(querySchool);
        schoolVideo.setReviewed(1);
        System.out.println(schoolVideo.getVideo_name() + " videoname");
        session.save(schoolVideo);
        System.out.println("\n Video Should have been saved in database after upload \n");
        tx.commit();

    } catch (RuntimeException e) {
        if (tx != null && tx.isActive()) {
            try {
                tx.rollback();
            } catch (HibernateException e1) {
                e1.printStackTrace();
            }
            throw e;
        }
    }
    return schoolVideo;
}

そして、Hibernate の挿入を示す私の loggin ステートメント:

したがって、rpcServiceImpl メソッドは session.save() メソッド呼び出しまで実行されます。直後の print ステートメントは印刷されないので、ここですべてが終了することがわかります。このデータベース挿入の欠如を追跡する方法を知っている人は誰でもいます。

4

0 に答える 0