5

テストは Eclipse 内で個別に動作しますが (右クリックして Junit として実行)、Maven を使用してコマンド ラインからテストを実行すると、HSQL データベースへの DataSource 接続を取得しようとして停止します。

LogicalConnectionImpl [DEBUG] Obtaining JDBC connection

私にとって最も奇妙な部分は、実行するテストを 10 (クラスではなく、個々の @Test メソッド) に制限すると、機能することです。しかし、その11回目のテストが実行されると、それは爆発します. テストの組み合わせは重要ではないため、30 個のテストがあり、実行するテストを 11 個以上選択すると失敗します。これは、DataSource接続の最大の問題だと思いましたが、これまでのところ、その詳細についてはうまくいきません。笑いのためにヒープサイズを追加しようとしましたが、うまくいきませんでした。

したがって、このハングの前に、複数の JDBC 接続とリリースが成功しました。

ここに私の applicationContext-HSQL.xml があります。これは、Eclipse バージョンとコマンド ライン バージョンの両方で使用されます。以下のクラス値をいじって、それぞれを強制的に失敗させたことはわかっています。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:flow="http://www.springframework.org/schema/webflow-config"
       xmlns:lang="http://www.springframework.org/schema/lang"
       xmlns:osgi="http://www.springframework.org/schema/osgi"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:util="http://www.springframework.org/schema/util"
       xmlns:p="http://www.springframework.org/schema/p"

       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
          http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
          http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
          http://www.springframework.org/schema/webflow-config http://www.springframework.org/schema/webflow-config/spring-webflow-config-2.0.xsd
          http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd
          http://www.springframework.org/schema/osgi http://www.springframework.org/schema/osgi/spring-osgi-3.0.xsd
          http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
          http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd">

    <context:annotation-config/>
    <context:component-scan base-package="com.company"/>

    <import resource="classpath*:/application-context-cxf.xml"/>

     <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="persistenceXmlLocation" value="META-INF/persistence.xml"  />
        <property name="jpaVendorAdapter">
            <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter">
                <property name="showSql" value="false" />
                <property name="generateDdl" value="false" />
                <property name="databasePlatform" value="org.hibernate.dialect.HSQLDialect" />
            </bean>
        </property>
    </bean>

    <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
        <property name="driverClassName" value="org.hsqldb.jdbcDriver" />
        <property name="url" value="jdbc:hsqldb:mem:test" />
        <property name="username" value="sa" />
        <property name="password" value="" />
    </bean>

    <tx:annotation-driven />
    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" >
        <property name="entityManagerFactory" ref="entityManagerFactory"  />
    </bean>
</beans>

私の Test クラスはすべて、Spring 3.2.5、JPA、DBUnit を利用し、AbstractInMemoryTests.java を拡張します。

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"classpath:applicationContext-hsqldb.xml"})
public class AbstractInMemoryTests {

private static final String FLAT_XML_DATASET = "FlatXmlDataSet.xml";

@Autowired
BasicDataSource bds;

@Before
public void setUp() throws Exception {
    DatabaseOperation.CLEAN_INSERT.execute(getConnection(), getDataSet());
}

@SuppressWarnings("deprecation")
private IDataSet getDataSet() throws Exception {
    InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream(FLAT_XML_DATASET);
    IDataSet dataset = new FlatXmlDataSet(inputStream);
    return dataset;
}

private IDatabaseConnection getConnection() throws Exception {
    Connection jdbcConnection = bds.getConnection();
    IDatabaseConnection connection = new DatabaseConnection(jdbcConnection);
    return connection;
}
}

なぜ私がその接続にぶら下がっているのか、またはトラブルシューティング方法についてのアイデアはありますか?

ありがとう、ショーン

4

3 に答える 3

5

通常のプロトコルによると、ぐっすり眠ることは思考を助けます。DataSource の appContext-hsqldb.xml プロパティで使用できる maxActive 設定を完全に見落としていました

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
    <property name="driverClassName" value="org.hsqldb.jdbcDriver" />
    <property name="url" value="jdbc:hsqldb:mem:test" />
    <property name="username" value="sa" />
    <property name="password" value="" />
    ****<property name="maxActive" value="-1"/>****
</bean>

これが将来誰かに役立つことを願っています。

http://commons.apache.org/dbcp/apidocs/org/apache/commons/dbcp/BasicDataSource.html

于 2013-01-30T15:02:53.533 に答える
1

何かがハングしている場合、Unix で「kill -3 {process_number}」を使用すると、スレッド ダンプが表示されます (Unix でない場合は、Windows/Mac に同等の機能があります)。これにより、ロックの問題がどこにあるのかがわかります。これにより、ロックの問題の原因と修正方法がわかります

于 2013-01-30T11:48:19.800 に答える