In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "how to use Hibernate to do the model layer to extract ID as the base class", the article explains the content is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "how to use Hibernate to do model layer to extract ID as the base class" bar!
When making a model, we always define a lot of Javabean, which can be used to replace data. When we use Hibernate as the persistence layer, we always set the field id as the primary key when building the table. It has nothing to do with the project, so it is safer for us to update the data. Now let's extract it as the base class of the model layer, where we can override the equals (), hashCode (), toString () methods. The code is as follows:
Java code
Packagecom.hyq.blog.model; import java.io.Serializable; import org.apache.commons.lang.builder.EqualsBuilder; import org.apache.commons.lang.builder.HashCodeBuilder; import org.apache.commons.lang.builder.ReflectionToStringBuilder; public classBaseModel implements Serializable {private String id; public String getId () {return id;} public void setId (String id) {this.id=id } / / override the equals () method public boolean equals (Object obj) {if (this==obj) return true; if (! (obj instance BaseModel)) return false; BaseModel target= (BaseModel) obj; if (this.getId ()! = null&&this.getId (). Length () > 0) {return this.getId () .equals (target.getId ()) } if (target.getId ()! = null&&target.getId (). Length () > 0) {return false;} return EqualsBuilder.reflectionEquals (this,obj);} / / override the hashCode () method public int hashCode () {if (this.getId ()! = null&&this.getId (). Lenght () > 0) {return this.getId (). HashCode ();} return HashCodeBuilder.reflectionHashCode (this) } / / override the toString () method public String toString () {return ReflectionToStringBuilder.toString (this) }} Thank you for your reading, the above is the content of "how to use Hibernate as the model layer to extract ID as the base class". After the study of this article, I believe you have a deeper understanding of how to use Hibernate as the model layer to extract ID as the base class, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.