为什么自动装配弹簧存储库不起作用?

时间:2016-09-22 20:08:01

标签: java spring jpa

我有一个控制器,我在那里自动装配存储库:

@Controller
@RequestMapping("/account")
@EnableJpaRepositories
public class AccountController {

    @Autowired
    private AccountRepository accountRepo;

//methods

}

我的存储库扩展了CrudRepository

@Repository
public interface AccountRepository extends CrudRepository<Account, Integer> {

    Account findOne(int primaryKey);
}

我使用xml来配置我的项目。这是:

<jpa:repositories base-package="com.library.repositories"
        entity-manager-factory-ref="entityManager"></jpa:repositories>

    <tx:annotation-driven transaction-manager="transactionManager" />

    <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
        <property name="entityManagerFactory" ref="entityManager" />
    </bean>

    <bean id="entityManager"
        class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
        <property name="dataSource" ref="dataSource" />
        <property name="packagesToScan" value="com.library.entities" />
        <property name="jpaVendorAdapter">
            <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" />
        </property>
        <property name="jpaProperties">
            <props>
                <!-- <prop key="hibernate.hbm2ddl.auto">create-drop</prop> -->
                <prop key="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</prop>
            </props>
        </property>
    </bean>

    <bean id="dataSource"
        class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="com.mysql.jdbc.Driver" />
        <property name="url" value="jdbc:mysql://localhost:3306/library" />
        <property name="username" value="root" />
        <property name="password" value="root" />
    </bean>

为什么它不起作用?我收到的错误是AccountController无法自动装配bean AccountRepository。

EDIT 我已经将我的配置重构为基于注释,一切正常。在我的XML版本中,我可能没有扫描某些类,但结果是错误的。

1 个答案:

答案 0 :(得分:2)

您可能需要在配置类上使用 @Configuration 注释而不是Controller类来使用 @EnableJpaRepositories 注释。

另外,请确保您的配置类位于扫描包中。