我需要在包级别配置@TypeDefs以使用自定义@Type.当我按照方式配置它时,我得到ClassNotFoundException.但是当我在类级别上放置@TypeDefs时它工作正常.
我找到了类似的stackoverflow post,但我不知道如何配置< resource package =“com.foo.bar.thepackage”/>使用我的application-context.xml文件输入.
根据一些帖子(如下文),注意到这是一个与春天相关的bug
I believe this is due to a bug in Spring,where it doesn't scan the annotations in package-info,but only those on classes annotated with @Entity,@Embeddable,or @MappedSuperclass. See https://jira.springsource.org/browse/SPR-8589.
任何人都可以帮我解决这个问题.谢谢.
带有package-info.java的@TypeDefs声明
@TypeDefs
({
@TypeDef(
name="encryptedString",typeClass=EncryptedStringType.class,parameters={
@Parameter(name="encryptorRegisteredName",value="abcHibernateStringEncryptor")
}
)
})
package com.abc.core.model;
import org.hibernate.annotations.TypeDef;
import org.hibernate.annotations.TypeDefs;
import org.hibernate.annotations.Parameter;
import org.jasypt.hibernate4.type.EncryptedStringType;
应用程序的context.xml
原文链接:https://www.f2er.com/spring/432120.html