0
我正試圖在我的DAL中實現Spring的存儲庫。我正在關注this指南。在Spring中啓用CrudRepository java配置
在的「1.2查詢方法」段落中的第三步,我們需要用下面的XML配置
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/data/jpa"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/data/jpa
http://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
<repositories base-package="com.acme.repositories" />
</beans>
在我的項目,以激活庫包掃描,我只使用Java的配置使這個聲明是一個對我來說有點問題。在這種情況下,在java conf中完成事情的正確方法是什麼?
謝謝