gpt4 book ai didi

java - 为什么 Autowiring Spring 存储库不起作用?

转载 作者:行者123 更新时间:2023-11-30 02:47:47 25 4
gpt4 key购买 nike

我有一个 Controller ,我可以在其中自动连接存储库:

@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 无法 Autowiring bean AccountRepository。

编辑我已将配置重构为基于注释,一切正常。在我的 XML 版本中,我可能没有扫描某些类,因此导致错误。

最佳答案

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

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

关于java - 为什么 Autowiring Spring 存储库不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39648020/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com