Skip to content

Instantly share code, notes, and snippets.

@sebersole
Created May 24, 2016 13:39
Show Gist options
  • Save sebersole/846380b208f5e876507810cbcf8cb62d to your computer and use it in GitHub Desktop.
Save sebersole/846380b208f5e876507810cbcf8cb62d to your computer and use it in GitHub Desktop.
@MappedSuperclass
class B {
int b;
void setB (int b) {
$$_hibernate_setB( b );
}
public void $$_hibernate_setB(int b) {
this.b = b;
}
}
@Entity
class A extends B {
@Override
public void $$_hibernate_setB(int b) {
super.$$_hibernate_setB( b );
// entitySpecificStuff ...
}
}
@MappedSuperclass
class B {
int b;
void setB (int b) {
this.b = b;
}
}
@Entity
class A extends B {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment