建议你看看官网文档,
http://docs.jboss.org/hibernate/orm/4.1/devguide/en-US/html/不知道你用的是哪个版本的,这个链接是4.1最新版的。
Entity statesnew, or
transient - the entity has just been instantiated and is not associated with a persistence context. It has no persistent representation in the database and no identifier value has been assigned.
managed, or
persistent - the entity has an associated identifier and is associated with a persistence context.
detached - the entity has an associated identifier, but is no longer associated with a persistence context (usually because the persistence context was closed or the instance was evicted from the context)
removed - the entity has an associated identifier and is associated with a persistence context, however it is scheduled for removal from the database.