当前位置: 首页>>代码示例>>Java>>正文


Java CreatedBy类代码示例

本文整理汇总了Java中org.springframework.data.annotation.CreatedBy的典型用法代码示例。如果您正苦于以下问题:Java CreatedBy类的具体用法?Java CreatedBy怎么用?Java CreatedBy使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


CreatedBy类属于org.springframework.data.annotation包,在下文中一共展示了CreatedBy类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: MybatisMetamodelEntityInformation

import org.springframework.data.annotation.CreatedBy; //导入依赖的package包/类
/**
 * Creates a new {@link AbstractEntityInformation} from the given domain class.
 *
 * @param domainClass must not be {@literal null}.
 */
protected MybatisMetamodelEntityInformation(PersistentEntity<T, ?> persistentEntity,
    AuditorAware<?> auditorAware, AuditDateAware<?> auditDateAware, Class<T> domainClass) {
  super(persistentEntity, auditorAware, auditDateAware, domainClass);

  createdDateProperty = persistentEntity.getPersistentProperty(CreatedDate.class);
  lastModifiedDateProperty = persistentEntity.getPersistentProperty(LastModifiedDate.class);
  createdByProperty = persistentEntity.getPersistentProperty(CreatedBy.class);
  lastModifiedByProperty = persistentEntity.getPersistentProperty(LastModifiedBy.class);
}
 
开发者ID:hatunet,项目名称:spring-data-mybatis,代码行数:15,代码来源:MybatisMetamodelEntityInformation.java

示例2: setCreatedBy

import org.springframework.data.annotation.CreatedBy; //导入依赖的package包/类
@CreatedBy
public void setCreatedBy(final String createdBy) {
    if (isController()) {
        this.createdBy = "CONTROLLER_PLUG_AND_PLAY";
        return;
    }

    this.createdBy = createdBy;
}
 
开发者ID:eclipse,项目名称:hawkbit,代码行数:10,代码来源:AbstractJpaBaseEntity.java

示例3: getCreatedBy

import org.springframework.data.annotation.CreatedBy; //导入依赖的package包/类
@CreatedBy
@Column(name = "CREATED_BY", nullable = true)
public String getCreatedBy() {
    return createdBy;
}
 
开发者ID:Appverse,项目名称:appverse-server,代码行数:6,代码来源:AuditingAbstractIntegrationBean.java


注:本文中的org.springframework.data.annotation.CreatedBy类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。