Browse Source
We now ship JPA 2.1 AttributeConverters for the ThreeTen back port library [0] similarly to the one we provide for JSR-310. [0] http://www.threeten.org/threetenbppull/131/head
7 changed files with 257 additions and 47 deletions
@ -0,0 +1,103 @@
@@ -0,0 +1,103 @@
|
||||
/* |
||||
* Copyright 2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jpa.domain.support; |
||||
|
||||
import java.util.Date; |
||||
|
||||
import javax.persistence.AttributeConverter; |
||||
import javax.persistence.Converter; |
||||
|
||||
import org.springframework.data.convert.Jsr310BackPortConverters.DateToInstantConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.DateToLocalDateConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.DateToLocalDateTimeConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.DateToLocalTimeConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.InstantToDateConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.LocalDateTimeToDateConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.LocalDateToDateConverter; |
||||
import org.springframework.data.convert.Jsr310BackPortConverters.LocalTimeToDateConverter; |
||||
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; |
||||
import org.threeten.bp.Instant; |
||||
import org.threeten.bp.LocalDate; |
||||
import org.threeten.bp.LocalDateTime; |
||||
import org.threeten.bp.LocalTime; |
||||
|
||||
/** |
||||
* JPA 2.1 converters to turn ThreeTen back port types into legacy {@link Date}s. To activate these converters make sure |
||||
* your persistence provider detects them by including this class in the list of mapped classes. In Spring environments, |
||||
* you can simply register the package of this class (i.e. {@code org.springframework.data.jpa.domain.support}) as |
||||
* package to be scanned on e.g. the {@link LocalContainerEntityManagerFactoryBean}. |
||||
* |
||||
* @author Oliver Gierke |
||||
* @see http://www.threeten.org/threetenbp
|
||||
*/ |
||||
public class Jsr310BackPortJpaConverters { |
||||
|
||||
@Converter(autoApply = true) |
||||
public static class LocalDateConverter implements AttributeConverter<LocalDate, Date> { |
||||
|
||||
@Override |
||||
public Date convertToDatabaseColumn(LocalDate date) { |
||||
return LocalDateToDateConverter.INSTANCE.convert(date); |
||||
} |
||||
|
||||
@Override |
||||
public LocalDate convertToEntityAttribute(Date date) { |
||||
return DateToLocalDateConverter.INSTANCE.convert(date); |
||||
} |
||||
} |
||||
|
||||
@Converter(autoApply = true) |
||||
public static class LocalTimeConverter implements AttributeConverter<LocalTime, Date> { |
||||
|
||||
@Override |
||||
public Date convertToDatabaseColumn(LocalTime time) { |
||||
return LocalTimeToDateConverter.INSTANCE.convert(time); |
||||
} |
||||
|
||||
@Override |
||||
public LocalTime convertToEntityAttribute(Date date) { |
||||
return DateToLocalTimeConverter.INSTANCE.convert(date); |
||||
} |
||||
} |
||||
|
||||
@Converter(autoApply = true) |
||||
public static class LocalDateTimeConverter implements AttributeConverter<LocalDateTime, Date> { |
||||
|
||||
@Override |
||||
public Date convertToDatabaseColumn(LocalDateTime date) { |
||||
return LocalDateTimeToDateConverter.INSTANCE.convert(date); |
||||
} |
||||
|
||||
@Override |
||||
public LocalDateTime convertToEntityAttribute(Date date) { |
||||
return DateToLocalDateTimeConverter.INSTANCE.convert(date); |
||||
} |
||||
} |
||||
|
||||
@Converter(autoApply = true) |
||||
public static class InstantConverter implements AttributeConverter<Instant, Date> { |
||||
|
||||
@Override |
||||
public Date convertToDatabaseColumn(Instant instant) { |
||||
return InstantToDateConverter.INSTANCE.convert(instant); |
||||
} |
||||
|
||||
@Override |
||||
public Instant convertToEntityAttribute(Date date) { |
||||
return DateToInstantConverter.INSTANCE.convert(date); |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,73 @@
@@ -0,0 +1,73 @@
|
||||
/* |
||||
* Copyright 2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jpa.domain.support; |
||||
|
||||
import javax.persistence.AttributeConverter; |
||||
import javax.sql.DataSource; |
||||
|
||||
import org.junit.runner.RunWith; |
||||
import org.springframework.context.annotation.Bean; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.data.jpa.domain.sample.User; |
||||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder; |
||||
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType; |
||||
import org.springframework.orm.jpa.JpaTransactionManager; |
||||
import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; |
||||
import org.springframework.orm.jpa.vendor.AbstractJpaVendorAdapter; |
||||
import org.springframework.orm.jpa.vendor.Database; |
||||
import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter; |
||||
import org.springframework.test.context.ContextConfiguration; |
||||
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; |
||||
import org.springframework.transaction.PlatformTransactionManager; |
||||
import org.springframework.transaction.annotation.Transactional; |
||||
|
||||
/** |
||||
* Base class for integration tests for JPA 2.1 {@link AttributeConverter} integration. |
||||
* |
||||
* @author Oliver Gierke |
||||
*/ |
||||
@RunWith(SpringJUnit4ClassRunner.class) |
||||
@ContextConfiguration |
||||
@Transactional |
||||
public abstract class AbstractAttributeConverterIntegrationTests { |
||||
|
||||
@Configuration |
||||
static class Config { |
||||
|
||||
@Bean |
||||
public LocalContainerEntityManagerFactoryBean entityManagerFactory() { |
||||
|
||||
AbstractJpaVendorAdapter vendorAdapter = new HibernateJpaVendorAdapter(); |
||||
vendorAdapter.setDatabase(Database.HSQL); |
||||
vendorAdapter.setGenerateDdl(true); |
||||
|
||||
LocalContainerEntityManagerFactoryBean factory = new LocalContainerEntityManagerFactoryBean(); |
||||
factory.setDataSource(dataSource()); |
||||
factory.setPackagesToScan(getClass().getPackage().getName(), User.class.getPackage().getName()); |
||||
factory.setJpaVendorAdapter(vendorAdapter); |
||||
|
||||
return factory; |
||||
} |
||||
|
||||
public @Bean PlatformTransactionManager transactionManager() { |
||||
return new JpaTransactionManager(); |
||||
} |
||||
|
||||
public @Bean DataSource dataSource() { |
||||
return new EmbeddedDatabaseBuilder().setType(EmbeddedDatabaseType.HSQL).build(); |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,67 @@
@@ -0,0 +1,67 @@
|
||||
/* |
||||
* Copyright 2014 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.data.jpa.domain.support; |
||||
|
||||
import static org.hamcrest.CoreMatchers.*; |
||||
import static org.junit.Assert.*; |
||||
import static org.junit.Assume.*; |
||||
import static org.springframework.data.jpa.support.EntityManagerTestUtils.*; |
||||
|
||||
import javax.persistence.EntityManager; |
||||
import javax.persistence.PersistenceContext; |
||||
|
||||
import org.junit.Test; |
||||
import org.threeten.bp.Instant; |
||||
import org.threeten.bp.LocalDate; |
||||
import org.threeten.bp.LocalDateTime; |
||||
import org.threeten.bp.LocalTime; |
||||
|
||||
/** |
||||
* Integration tests for {@link Jsr310BackPortJpaConverters}. |
||||
* |
||||
* @author Oliver Gierke |
||||
*/ |
||||
public class Jsr310BackPortJpaConvertersIntegrationTests extends AbstractAttributeConverterIntegrationTests { |
||||
|
||||
@PersistenceContext EntityManager em; |
||||
|
||||
/** |
||||
* @see DATAJPA-650 |
||||
*/ |
||||
@Test |
||||
public void usesJsr310BackPortJpaConverters() { |
||||
|
||||
assumeTrue(currentEntityManagerIsAJpa21EntityManager(em)); |
||||
|
||||
DateTimeSample sample = new DateTimeSample(); |
||||
|
||||
sample.bpInstant = Instant.now(); |
||||
sample.bpLocalDate = LocalDate.now(); |
||||
sample.bpLocalTime = LocalTime.now(); |
||||
sample.bpLocalDateTime = LocalDateTime.now(); |
||||
|
||||
em.persist(sample); |
||||
em.clear(); |
||||
|
||||
DateTimeSample result = em.find(DateTimeSample.class, sample.id); |
||||
|
||||
assertThat(result, is(notNullValue())); |
||||
assertThat(result.bpInstant, is(sample.bpInstant)); |
||||
assertThat(result.bpLocalDate, is(sample.bpLocalDate)); |
||||
assertThat(result.bpLocalTime, is(sample.bpLocalTime)); |
||||
assertThat(result.bpLocalDateTime, is(sample.bpLocalDateTime)); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue