本文整理汇总了Java中javax.persistence.Id类的典型用法代码示例。如果您正苦于以下问题:Java Id类的具体用法?Java Id怎么用?Java Id使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
Id类属于javax.persistence包,在下文中一共展示了Id类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getId
import javax.persistence.Id; //导入依赖的package包/类
/**
* 用户id
* @return
*/
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
public Integer getId() {
return this.id;
}
示例2: getId
import javax.persistence.Id; //导入依赖的package包/类
@Id
@Column(length = 32)
@GeneratedValue(generator = "system-uuid")
@GenericGenerator(name = "system-uuid", strategy = "uuid")
public String getId() {
return id;
}
示例3: isProcessingId
import javax.persistence.Id; //导入依赖的package包/类
private boolean isProcessingId(XMLContext.Default defaults) {
boolean isExplicit = defaults.getAccess() != null;
boolean correctAccess =
( PropertyType.PROPERTY.equals( propertyType ) && AccessType.PROPERTY.equals( defaults.getAccess() ) )
|| ( PropertyType.FIELD.equals( propertyType ) && AccessType.FIELD
.equals( defaults.getAccess() ) );
boolean hasId = defaults.canUseJavaAnnotations()
&& ( isPhysicalAnnotationPresent( Id.class ) || isPhysicalAnnotationPresent( EmbeddedId.class ) );
//if ( properAccessOnMetadataComplete || properOverridingOnMetadataNonComplete ) {
boolean mirrorAttributeIsId = defaults.canUseJavaAnnotations() &&
( mirroredAttribute != null &&
( mirroredAttribute.isAnnotationPresent( Id.class )
|| mirroredAttribute.isAnnotationPresent( EmbeddedId.class ) ) );
boolean propertyIsDefault = PropertyType.PROPERTY.equals( propertyType )
&& !mirrorAttributeIsId;
return correctAccess || ( !isExplicit && hasId ) || ( !isExplicit && propertyIsDefault );
}
示例4: getIdField
import javax.persistence.Id; //导入依赖的package包/类
public static Field getIdField(Object object) {
List<Field> fieldList = new ArrayList<>();
Field[] declaredFields = object.getClass().getDeclaredFields();
for (Field field : declaredFields) {
if (field.isAnnotationPresent(Id.class)) {
fieldList.add(field);
}
}
if (fieldList.size() == 0) {
throw new RuntimeException(object.getClass().getSimpleName() + "实体类必须有一个包含@Id的字段");
}
if (fieldList.size() > 1) {
throw new RuntimeException(object.getClass().getSimpleName() + "实体类必须有一个包含@Id的字段");
}
return fieldList.get(0);
}
示例5: getId
import javax.persistence.Id; //导入依赖的package包/类
@Id
@GeneratedValue
@Override
public Long getId()
{
return super.getId();
}
示例6: getName
import javax.persistence.Id; //导入依赖的package包/类
@Id
@GenericGenerator(name="generator",strategy="assigned")
@GeneratedValue(generator="generator")
@Column(length=32)
public String getName() {
return name;
}
示例7: getAssociationId
import javax.persistence.Id; //导入依赖的package包/类
/**
* Adds an @Id annotation to the specified annotationList if the specified element has the id
* attribute set to true. This should only be the case for many-to-one or one-to-one
* associations.
*/
private void getAssociationId(List<Annotation> annotationList, Element element) {
String attrVal = element.attributeValue( "id" );
if ( "true".equals( attrVal ) ) {
AnnotationDescriptor ad = new AnnotationDescriptor( Id.class );
annotationList.add( AnnotationFactory.create( ad ) );
}
}
示例8: getId
import javax.persistence.Id; //导入依赖的package包/类
@Column(name = "brand_id")
@Override
@Id
@GeneratedValue
public Long getId()
{
return super.getId();
}
示例9: getId
import javax.persistence.Id; //导入依赖的package包/类
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "id", unique = true, nullable = false)
public Integer getId() {
return id;
}
示例10: Payment
import javax.persistence.Id; //导入依赖的package包/类
public Payment(long Id, String title, String paymentType, String price, String currency, String explanation,
String theRoomNumber, String dateTime) {
super();
this.id = Id;
this.title = title;
this.paymentType = paymentType;
this.price = price;
this.currency = currency;
this.explanation = explanation;
this.roomNumber = theRoomNumber;
this.dateTime = dateTime;
}
示例11: createIDNotfoundException
import javax.persistence.Id; //导入依赖的package包/类
private static DomainIdAnnotationNotFoundException createIDNotfoundException(Class<? extends Object> clazz) {
logger.error("在"+clazz.getName()+"中找不到含有"+Id.class.getName()+"注解的get方法,或字段。");
DomainIdAnnotationNotFoundException exception = new DomainIdAnnotationNotFoundException("在"+
clazz.getName()+"中找不到含有"+Id.class.getName()+"注解的get方法,或字段。");
exception.printStackTrace();
return exception;
}
示例12: User
import javax.persistence.Id; //导入依赖的package包/类
public User(long id, String firstName, String lastName, String nickName, String password, String email,
String role) {
super();
Id = id;
FirstName = firstName;
LastName = lastName;
NickName = nickName;
Password = password;
Email = email;
Role = role;
}
示例13: getOrderNumber
import javax.persistence.Id; //导入依赖的package包/类
@Id @GeneratedValue(strategy=IDENTITY)
@Column(name="orderNumber", unique=true, nullable=false)
public Integer getOrderNumber() {
return this.orderNumber;
}
示例14: getId
import javax.persistence.Id; //导入依赖的package包/类
@Id
@GeneratedValue(strategy = IDENTITY)
@Column(name = "Id", unique = true, nullable = false)
public Integer getId() {
return this.id;
}
示例15: getId
import javax.persistence.Id; //导入依赖的package包/类
/** @return 主键. */
@Id
@Column(name = "ID", unique = true, nullable = false)
public Long getId() {
return this.id;
}