本文主要研究一下Spring Data Auditable接口的變化html
spring-data-commons-1.12.8.RELEASE-sources.jar!/org/springframework/data/domain/Auditable.javajava
import java.io.Serializable; import org.joda.time.DateTime; /** * Interface for auditable entities. Allows storing and retrieving creation and modification information. The changing * instance (typically some user) is to be defined by a generics definition. * * @param <U> the auditing type. Typically some kind of user. * @param <ID> the type of the audited type's identifier * @author Oliver Gierke */ public interface Auditable<U, ID extends Serializable> extends Persistable<ID> { /** * Returns the user who created this entity. * * @return the createdBy */ U getCreatedBy(); /** * Sets the user who created this entity. * * @param createdBy the creating entity to set */ void setCreatedBy(final U createdBy); /** * Returns the creation date of the entity. * * @return the createdDate */ DateTime getCreatedDate(); /** * Sets the creation date of the entity. * * @param creationDate the creation date to set */ void setCreatedDate(final DateTime creationDate); /** * Returns the user who modified the entity lastly. * * @return the lastModifiedBy */ U getLastModifiedBy(); /** * Sets the user who modified the entity lastly. * * @param lastModifiedBy the last modifying entity to set */ void setLastModifiedBy(final U lastModifiedBy); /** * Returns the date of the last modification. * * @return the lastModifiedDate */ DateTime getLastModifiedDate(); /** * Sets the date of the last modification. * * @param lastModifiedDate the date of the last modification to set */ void setLastModifiedDate(final DateTime lastModifiedDate); }
能夠看到這個版本使用的joda-time的DateTime
spring-data-commons-2.0.7.RELEASE-sources.jar!/org/springframework/data/domain/Auditable.javaspring
/** * Interface for auditable entities. Allows storing and retrieving creation and modification information. The changing * instance (typically some user) is to be defined by a generics definition. * * @param <U> the auditing type. Typically some kind of user. * @param <ID> the type of the audited type's identifier * @author Oliver Gierke */ public interface Auditable<U, ID, T extends TemporalAccessor> extends Persistable<ID> { /** * Returns the user who created this entity. * * @return the createdBy */ Optional<U> getCreatedBy(); /** * Sets the user who created this entity. * * @param createdBy the creating entity to set */ void setCreatedBy(U createdBy); /** * Returns the creation date of the entity. * * @return the createdDate */ Optional<T> getCreatedDate(); /** * Sets the creation date of the entity. * * @param creationDate the creation date to set */ void setCreatedDate(T creationDate); /** * Returns the user who modified the entity lastly. * * @return the lastModifiedBy */ Optional<U> getLastModifiedBy(); /** * Sets the user who modified the entity lastly. * * @param lastModifiedBy the last modifying entity to set */ void setLastModifiedBy(U lastModifiedBy); /** * Returns the date of the last modification. * * @return the lastModifiedDate */ Optional<T> getLastModifiedDate(); /** * Sets the date of the last modification. * * @param lastModifiedDate the date of the last modification to set */ void setLastModifiedDate(T lastModifiedDate); }
能夠看到新版版本,去掉了強制依賴joda-time,改成在接口定義新增泛型來表達,該泛型要求實現TemporalAccessor接口
另外,返回值的類型都改成了Optional
新版的Auditable主要有兩個比較大的變更:dom