Entity Manager
每个Entity Manager都有一个对应的Persistent Context相关,Persistent Context定义了一个scope,所有关于Entity的更新、删除等操作都是在这个scope中进行的额。而我们又是通过Entity Manager和Persistent Context进行交互的。
1. Entity Manager Interface
1)Container-Managed Entity Managers
当Application的Container(如JEE Container或如Spring这样custom container)管理了Entity Manager的lifecycle,则称这个Entity Manager是Container-Managed
在这种情况下,EntityManager实例是通过@PersistentContext注入的。