java.lang.IllegalArgumentException: expecting IdClass mapping when using composite-id












0















I am trying to map a table which have composite-id in it using Hibernate. I have a mapper file, an entity class that maps that table and a IdClass that is needed for the composite-id's serialization. But I am getting IllegalArgumentException: expecting IdClass mapping error. Here is the mapper file:



<hibernate-mapping>
<class name="database.PermissionsEntity" table="Permissions" schema="interapp">
<composite-id mapped="true" class="database.PermissionsEntityPK">
<key-property name="id">
<column name="id" sql-type="int(11)"/>
</key-property>
<key-property name="level">
<column name="level" sql-type="char(1)" length="1"/>
</key-property>
</composite-id>
</class>
</hibernate-mapping>


This is the Entity class I wrote:



@Entity
@Table(name = "Permissions", schema = "interapp", catalog = "")
@IdClass(PermissionsEntityPK.class)
public class PermissionsEntity {
@Id
private int id;

@Id
private String level;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntity that = (PermissionsEntity) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


The IdClass that I am using is this:



public class PermissionsEntityPK implements Serializable {
private int id;
private String level;

public PermissionsEntityPK(int id, String level) {
this.id = id;
this.level = level;
}

public PermissionsEntityPK() {

}

@Column(name = "id", nullable = false)
@Id
public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

@Column(name = "level", nullable = false, length = 1)
@Id
public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntityPK that = (PermissionsEntityPK) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


I think there maybe some @Id misplacement, but I can't figure out where. What am I missing here?










share|improve this question


















  • 2





    Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

    – Nenad
    Nov 23 '18 at 0:11
















0















I am trying to map a table which have composite-id in it using Hibernate. I have a mapper file, an entity class that maps that table and a IdClass that is needed for the composite-id's serialization. But I am getting IllegalArgumentException: expecting IdClass mapping error. Here is the mapper file:



<hibernate-mapping>
<class name="database.PermissionsEntity" table="Permissions" schema="interapp">
<composite-id mapped="true" class="database.PermissionsEntityPK">
<key-property name="id">
<column name="id" sql-type="int(11)"/>
</key-property>
<key-property name="level">
<column name="level" sql-type="char(1)" length="1"/>
</key-property>
</composite-id>
</class>
</hibernate-mapping>


This is the Entity class I wrote:



@Entity
@Table(name = "Permissions", schema = "interapp", catalog = "")
@IdClass(PermissionsEntityPK.class)
public class PermissionsEntity {
@Id
private int id;

@Id
private String level;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntity that = (PermissionsEntity) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


The IdClass that I am using is this:



public class PermissionsEntityPK implements Serializable {
private int id;
private String level;

public PermissionsEntityPK(int id, String level) {
this.id = id;
this.level = level;
}

public PermissionsEntityPK() {

}

@Column(name = "id", nullable = false)
@Id
public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

@Column(name = "level", nullable = false, length = 1)
@Id
public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntityPK that = (PermissionsEntityPK) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


I think there maybe some @Id misplacement, but I can't figure out where. What am I missing here?










share|improve this question


















  • 2





    Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

    – Nenad
    Nov 23 '18 at 0:11














0












0








0








I am trying to map a table which have composite-id in it using Hibernate. I have a mapper file, an entity class that maps that table and a IdClass that is needed for the composite-id's serialization. But I am getting IllegalArgumentException: expecting IdClass mapping error. Here is the mapper file:



<hibernate-mapping>
<class name="database.PermissionsEntity" table="Permissions" schema="interapp">
<composite-id mapped="true" class="database.PermissionsEntityPK">
<key-property name="id">
<column name="id" sql-type="int(11)"/>
</key-property>
<key-property name="level">
<column name="level" sql-type="char(1)" length="1"/>
</key-property>
</composite-id>
</class>
</hibernate-mapping>


This is the Entity class I wrote:



@Entity
@Table(name = "Permissions", schema = "interapp", catalog = "")
@IdClass(PermissionsEntityPK.class)
public class PermissionsEntity {
@Id
private int id;

@Id
private String level;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntity that = (PermissionsEntity) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


The IdClass that I am using is this:



public class PermissionsEntityPK implements Serializable {
private int id;
private String level;

public PermissionsEntityPK(int id, String level) {
this.id = id;
this.level = level;
}

public PermissionsEntityPK() {

}

@Column(name = "id", nullable = false)
@Id
public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

@Column(name = "level", nullable = false, length = 1)
@Id
public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntityPK that = (PermissionsEntityPK) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


I think there maybe some @Id misplacement, but I can't figure out where. What am I missing here?










share|improve this question














I am trying to map a table which have composite-id in it using Hibernate. I have a mapper file, an entity class that maps that table and a IdClass that is needed for the composite-id's serialization. But I am getting IllegalArgumentException: expecting IdClass mapping error. Here is the mapper file:



<hibernate-mapping>
<class name="database.PermissionsEntity" table="Permissions" schema="interapp">
<composite-id mapped="true" class="database.PermissionsEntityPK">
<key-property name="id">
<column name="id" sql-type="int(11)"/>
</key-property>
<key-property name="level">
<column name="level" sql-type="char(1)" length="1"/>
</key-property>
</composite-id>
</class>
</hibernate-mapping>


This is the Entity class I wrote:



@Entity
@Table(name = "Permissions", schema = "interapp", catalog = "")
@IdClass(PermissionsEntityPK.class)
public class PermissionsEntity {
@Id
private int id;

@Id
private String level;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntity that = (PermissionsEntity) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


The IdClass that I am using is this:



public class PermissionsEntityPK implements Serializable {
private int id;
private String level;

public PermissionsEntityPK(int id, String level) {
this.id = id;
this.level = level;
}

public PermissionsEntityPK() {

}

@Column(name = "id", nullable = false)
@Id
public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

@Column(name = "level", nullable = false, length = 1)
@Id
public String getLevel() {
return level;
}

public void setLevel(String level) {
this.level = level;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

PermissionsEntityPK that = (PermissionsEntityPK) o;

if (id != that.id) return false;
if (level != null ? !level.equals(that.level) : that.level != null) return false;

return true;
}

@Override
public int hashCode() {
int result = id;
result = 31 * result + (level != null ? level.hashCode() : 0);
return result;
}
}


I think there maybe some @Id misplacement, but I can't figure out where. What am I missing here?







java hibernate hibernate-mapping






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 22 '18 at 23:50









Ajoy DasAjoy Das

307111




307111








  • 2





    Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

    – Nenad
    Nov 23 '18 at 0:11














  • 2





    Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

    – Nenad
    Nov 23 '18 at 0:11








2




2





Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

– Nenad
Nov 23 '18 at 0:11





Why are you mixing hibernate xml mapping with JPA annotations, just the annotations should be enough in this case

– Nenad
Nov 23 '18 at 0:11












0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439193%2fjava-lang-illegalargumentexception-expecting-idclass-mapping-when-using-composi%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439193%2fjava-lang-illegalargumentexception-expecting-idclass-mapping-when-using-composi%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Wiesbaden

Marschland

Dieringhausen