DATAJPA-695 - Fixed Javadoc in JSR-310 and ThreeTen Backport converters.

This commit is contained in:
Oliver Gierke
2015-03-27 15:40:51 +01:00
parent 348240f363
commit 935387583c
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean;
/**
* JPA 2.1 converters to turn JSR-310 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
* can simply register the package of this class (i.e. {@code org.springframework.data.jpa.convert.threeten}) as package
* to be scanned on e.g. the {@link LocalContainerEntityManagerFactoryBean}.
*
* @author Oliver Gierke

View File

@@ -37,7 +37,7 @@ 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
* you can simply register the package of this class (i.e. {@code org.springframework.data.jpa.convert.threetenbp}) as
* package to be scanned on e.g. the {@link LocalContainerEntityManagerFactoryBean}.
*
* @author Oliver Gierke