You're flushing, but you're not committing - or otherwise ending the transaction / session which is likely configured for auto-commit.
Yes, after calling flush()
, the DBMS is now aware of your data - but following ACID standards, no other database sessions will see this data until the DBMS is told to commit it.
Without knowing additional details about the architecture behind the rest of your application, etc., you're probably looking to do something like:
em.getTransaction().commit();
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…