本文整理了Java中org.hibernate.mapping.Join.addProperty()
方法的一些代码示例,展示了Join.addProperty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Join.addProperty()
方法的具体详情如下:
包路径:org.hibernate.mapping.Join
类名称:Join
方法名:addProperty
暂无
代码示例来源:origin: hibernate/hibernate-orm
private void addPropertyToJoin(Property prop, XClass declaringClass, Join join) {
if ( declaringClass != null ) {
final InheritanceState inheritanceState = inheritanceStatePerClass.get( declaringClass );
if ( inheritanceState == null ) {
throw new AssertionFailure(
"Declaring class is not found in the inheritance state hierarchy: " + declaringClass
);
}
if ( inheritanceState.isEmbeddableSuperclass() ) {
join.addMappedsuperclassProperty(prop);
addPropertyToMappedSuperclass( prop, declaringClass );
}
else {
join.addProperty( prop );
}
}
else {
join.addProperty( prop );
}
}
代码示例来源:origin: org.hibernate/hibernate-annotations
private void addPropertyToJoin(Property prop, XClass declaringClass, Join join) {
if ( declaringClass != null ) {
final InheritanceState inheritanceState = inheritanceStatePerClass.get( declaringClass );
if ( inheritanceState == null ) {
throw new AssertionFailure(
"Declaring class is not found in the inheritance state hierarchy: " + declaringClass
);
}
if ( inheritanceState.isEmbeddableSuperclass() ) {
join.addMappedsuperclassProperty(prop);
addPropertyToMappedSuperclass( prop, declaringClass );
}
else {
join.addProperty( prop );
}
}
else {
join.addProperty( prop );
}
}
代码示例来源:origin: hibernate/hibernate-orm
manyToOne.addColumn( copy );
mappedByJoin.addProperty( prop );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
private void addPropertyToJoin(Property prop, XClass declaringClass, Join join) {
if ( declaringClass != null ) {
final InheritanceState inheritanceState = inheritanceStatePerClass.get( declaringClass );
if ( inheritanceState == null ) {
throw new AssertionFailure(
"Declaring class is not found in the inheritance state hierarchy: " + declaringClass
);
}
if ( inheritanceState.isEmbeddableSuperclass() ) {
join.addMappedsuperclassProperty(prop);
addPropertyToMappedSuperclass( prop, declaringClass );
}
else {
join.addProperty( prop );
}
}
else {
join.addProperty( prop );
}
}
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
private void addPropertyToJoin(Property prop, XClass declaringClass, Join join) {
if ( declaringClass != null ) {
final InheritanceState inheritanceState = inheritanceStatePerClass.get( declaringClass );
if ( inheritanceState == null ) {
throw new AssertionFailure(
"Declaring class is not found in the inheritance state hierarchy: " + declaringClass
);
}
if ( inheritanceState.isEmbeddableSuperclass() ) {
join.addMappedsuperclassProperty(prop);
addPropertyToMappedSuperclass( prop, declaringClass );
}
else {
join.addProperty( prop );
}
}
else {
join.addProperty( prop );
}
}
代码示例来源:origin: org.hibernate.orm/hibernate-core
private void addPropertyToJoin(Property prop, XClass declaringClass, Join join) {
if ( declaringClass != null ) {
final InheritanceState inheritanceState = inheritanceStatePerClass.get( declaringClass );
if ( inheritanceState == null ) {
throw new AssertionFailure(
"Declaring class is not found in the inheritance state hierarchy: " + declaringClass
);
}
if ( inheritanceState.isEmbeddableSuperclass() ) {
join.addMappedsuperclassProperty(prop);
addPropertyToMappedSuperclass( prop, declaringClass );
}
else {
join.addProperty( prop );
}
}
else {
join.addProperty( prop );
}
}
代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all
public void addProperty(Property prop, Ejb3Column[] columns) {
//Ejb3Column.checkPropertyConsistency( ); //already called earlier
if ( columns[0].isSecondary() ) {
//TODO move the getJoin() code here?
columns[0].getJoin().addProperty( prop );
}
else {
addProperty( prop );
}
}
代码示例来源:origin: org.hibernate/hibernate-annotations
manyToOne.addColumn( copy );
mappedByJoin.addProperty( prop );
代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all
public void addProperty(Property prop) {
if ( prop.getValue() instanceof Component ) {
//TODO handle quote and non quote table comparison
String tableName = prop.getValue().getTable().getName();
if ( getJoinsPerRealTableName().containsKey( tableName ) ) {
getJoinsPerRealTableName().get( tableName ).addProperty( prop );
}
else {
persistentClass.addProperty( prop );
}
}
else {
persistentClass.addProperty( prop );
}
}
代码示例来源:origin: hibernate/hibernate
.getEntityName(), subnode, mappings, inheritedMetas );
prop.setOptional( join.isOptional() );
join.addProperty( prop );
代码示例来源:origin: jboss.jboss-embeddable-ejb3/hibernate-all
.getEntityName(), subnode, mappings, inheritedMetas );
prop.setOptional( join.isOptional() );
join.addProperty( prop );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
.getEntityName(), subnode, mappings, inheritedMetas );
prop.setOptional( join.isOptional() );
join.addProperty( prop );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
.getEntityName(), subnode, mappings, inheritedMetas );
prop.setOptional( join.isOptional() );
join.addProperty( prop );
代码示例来源:origin: org.hibernate.orm/hibernate-core
.forEach( column -> manyToOne.addColumn( ( (Column) column ).clone() ) );
manyToOne.createForeignKey();
mappedByJoin.addProperty( prop );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate
manyToOne.addColumn( copy );
mappedByJoin.addProperty( prop );
代码示例来源:origin: org.hibernate/com.springsource.org.hibernate.core
manyToOne.addColumn( copy );
mappedByJoin.addProperty( prop );
内容来源于网络,如有侵权,请联系作者删除!