@Converter注释类没有在spring-boot项目中自动检测到

时间:2015-03-26 15:23:14

标签: spring hibernate type-conversion spring-boot jpa-2.1

我正在使用带有hibernate.version的spring-boot 1.2.2:4.3.6.Final用于简单操作,并使用@Converter将java8 LocalDateTime字段映射到时间戳。

在我的转换器类中,我使用autoApply = true,如下所示。

@Converter(autoApply = true)
public class LocalDateTimePersistenceConverter implements
    AttributeConverter {
    @Override
    public java.sql.Timestamp convertToDatabaseColumn(LocalDateTime entityValue) {
        return Timestamp.valueOf(entityValue);
    }

    @Override
    public LocalDateTime convertToEntityAttribute(java.sql.Timestamp databaseValue) {
        return databaseValue.toLocalDateTime();
    }
}

但是,我仍然需要在我的实体上使用@Convert。 转换器类是我扫描的包的一部分。 为了让它自动运行而不在所有数据库条目上使用@Convert,我必须做些什么?

::此外::

这是我的DB配置

@Bean
public LocalContainerEntityManagerFactoryBean entityManagerFactory() {
    LocalContainerEntityManagerFactoryBean lef = new LocalContainerEntityManagerFactoryBean();
    lef.setDataSource(dataSource());
    lef.setJpaVendorAdapter(jpaVendorAdapter());
    lef.setPackagesToScan("path to domain and Converter class");
    lef.afterPropertiesSet();
    return lef;
}

@Bean
public JpaTransactionManager transactionManager() {
    JpaTransactionManager transactionManager = new JpaTransactionManager();
    transactionManager.setEntityManagerFactory(entityManagerFactory().getObject());
    return transactionManager;
}

@Bean
public JpaVendorAdapter jpaVendorAdapter() {
    HibernateJpaVendorAdapter adapter = new HibernateJpaVendorAdapter();
    adapter.setDatabase(Database.ORACLE);
    adapter.setShowSql(false);
    adapter.setGenerateDdl(false);
    return adapter;
}

2 个答案:

答案 0 :(得分:5)

我唯一能看到的是你可能需要更改下面的这一行

public class LocalDateTimePersistenceConverter implements
AttributeConverter<java.sql.Timestamp, LocaleDateTime>

因此,Spring会知道如何自动转换哪种类型的属性。

答案 1 :(得分:4)

订单不正确,应该是:

public class LocalDateTimePersistenceConverter implements 
  AttributeConverter<LocaleDateTime, java.sql.Timestamp>

正如Javadoc所说:

javax.persistence.AttributeConverter<X, Y>
Parameters:
  X the type of the entity attribute
  Y the type of the database column