I will make it more clearer. Persistent objects are instances of POJO classes that you create that represent rows in the table in the database.
According to hibernate-doc an instance of POJO class representing table in database goes through 3 states of which persistent is one of them.
When a POJO instance is in session scope, it is said to be persistent i.e hibernate detects any changes made to that object and synchronizes it with database when we close or flush the session.
And about hibernate.properties and XML Mapping @Ken Chan is right. Go through hibernate-doc for more illustrations on objects in hibernate.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…