1

Spring ROO を使い始めたばかりで、データベースのリバース エンジニア コマンドを使用してエンティティ クラスを生成しました。ただし、生成されたエンティティ クラスで CRUD メソッドの 1 つを呼び出そうとすると、常に次の例外が発生し ます。 )

(生成されたファイルを見て) EntityManager がクラスに挿入されていないと思われます。不足している構成を教えてください。

ここに私のapplicationContext.xmlがどのように見えるかがあります

    <context:property-placeholder location="classpath*:META-INF/spring/*.properties"/>
<context:spring-configured/>
<context:component-scan base-package="com.lennartz">
    <context:exclude-filter expression=".*_Roo_.*" type="regex"/>
    <context:exclude-filter expression="org.springframework.stereotype.Controller" type="annotation"/>
</context:component-scan>
<bean class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" id="dataSource">
    <property name="driverClassName" value="${database.driverClassName}"/>
    <property name="url" value="${database.url}"/>
    <property name="username" value="${database.username}"/>
    <property name="password" value="${database.password}"/>
    <property name="testOnBorrow" value="true"/>
    <property name="testOnReturn" value="true"/>
    <property name="testWhileIdle" value="true"/>
    <property name="timeBetweenEvictionRunsMillis" value="1800000"/>
    <property name="numTestsPerEvictionRun" value="3"/>
    <property name="minEvictableIdleTimeMillis" value="1800000"/>
    <property name="validationQuery" value="SELECT 1 FROM DUAL"/>
</bean>
<bean class="org.springframework.orm.jpa.JpaTransactionManager" id="transactionManager">
    <property name="entityManagerFactory" ref="entityManagerFactory"/>
</bean>
<tx:annotation-driven mode="aspectj" transaction-manager="transactionManager"/>
<bean class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" id="entityManagerFactory">
    <property name="persistenceUnitName" value="persistenceUnit"/>
    <property name="dataSource" ref="dataSource"/>
</bean>

そして、生成されたエンティティ ファイル

privileged aspect UserDetail_Roo_Jpa_ActiveRecord {

@PersistenceContext
transient EntityManager UserDetail.entityManager;

public static final EntityManager UserDetail.entityManager() {
    EntityManager em = new UserDetail().entityManager;
    if (em == null) throw new IllegalStateException("Entity manager has not been injected (is the Spring Aspects JAR configured as an AJC/AJDT aspects library?)");
    return em;
}

足りないものがある場合はお知らせください。

4

2 に答える 2

1

Roo によって生成されたコードをカスタマイズするために、.aj ファイルを変更してはなりません。http://docs.spring.io/spring-roo/docs/2.0.0.M1/reference/html/#edit-modify-and-customize -the-roo 生成コード

于 2015-07-15T11:19:36.133 に答える
0

最終的に問題を突き止めました。アプリケーションでコンテキストが初期化されていないようです。web.xml に次の行を追加しましたが、うまくいきました

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath*:META-INF/spring/applicationContext*.xml</param-value>
</context-param>

アプリケーションが Web アプリでない場合は、ClassPathXmlApplicationContext を使用してコンテキストを初期化するとうまくいくはずです。

于 2015-07-19T16:20:10.810 に答える