I added the following method to one of my application entity.
public boolean isSame(TaskUser taskUser){
//some work
}
However I came across few threads like this one regarding hibernate errors for such kind of methods used without @Transient. But my application is running fine and also there is no column created in my DB table for the entity, so as a learner I want to ask what actually happens that save my app from hibernate error. Is that argument passed the reason?