synchronized public <E extends Persistence> PersisterStorage<E> newPersister(Storage storage,
Class<E> classOf, PodiBase podi) {
Persister<E> check = getPersister(classOf);
if (null != check) {
throw new TransactionException("已有同名的存储器:" + check);
}
PersisterStorage<E> persister = new PersisterStorage<E>(storage, MappedAnnotation
.getInstance(classOf, this, podi), classOf);
persister.setFlusher(m_Flusher);