我有一個使用Spring Roo生成的Spring - JPA項目。現在爲了一些要求,我們用一些不符合JPA的其他框架(MyBatis)替換我們的JPA層。我已經做了改變,他們工作也很好。我從我的pom.xml文件中刪除了所有JPA依賴項。在將JPA項目轉換爲非JPA項目時面臨Spring Roo問題
我面臨的問題與我的JUnit測試項目,用於測試DAO層。 Spring Roo正在尋找屬於JPA特定jar的javax.persistence.Entity
類。
請在下面找到以下錯誤信息:
can't determine annotations of missing type javax.persistence.Entity
when weaving type ****.**.***Test
when weaving classes
when weaving
when batch building BuildConfig[null] #Files=12 AopXmls=#0
[Xlint:cantFindType]
error at (no source information available
誰能請告訴我如何消除這種誤差不添加JPA依賴?
是出現在Spring Roo的外殼這個錯誤? – jcgarcia