카테고리 없음

JPA drop table in real db

een 2021. 1. 14. 17:38
	@Resource
	private EntityManagerFactory barEntityManagerFactory;
    
    ...
	
        EntityManager entityManager = barEntityManagerFactory.createEntityManager();
		EntityTransaction transaction = entityManager.getTransaction();

		transaction.begin();
		
        entityManager.createNativeQuery(" drop table bar ").executeUpdate();
		
        transaction.commit();