我有一个基于Spring的应用程序。我让Spring执行所有@Transactional
魔法,只要我对映射到Java对象的实体进行操作,一切正常。
但是,当我想在未映射到任何Java实体的表上执行某些自定义作业时,我陷入困境。前段时间,我找到了一个执行自定义查询的解决方案:
// em is instance of EntityManager
em.getTransaction().begin();
Statement st = em.unwrap(Connection.class).createStatement();
ResultSet rs = st.executeQuery("SELECT custom FROM my_data");
em.getTransaction().commit();
当我使用带有@PersistenceContext
注释的Spring注入的实体管理器尝试此操作时,我收到了几乎明显的异常:
java.lang.IllegalStateException:
Not allowed to create transaction on shared EntityManager -
use Spring transactions or EJB CMT instead
我终于设法提取了这样的非共享实体管理器:
@Inject
public void myCustomSqlExecutor(EntityManagerFactory emf){
EntityManager em = emf.createEntityManager();
// the em.unwrap(...) stuff from above works fine here
}
尽管如此,我发现这种解决方案既不舒适也不优雅。我只是想知道在这个Spring-transactional驱动的环境中是否还有其他方法可以运行自定义SQL查询?
对于那些好奇的人 - 当我尝试在我的应用程序和相关论坛中同时创建用户帐户时出现了这个问题 - 我不希望论坛的用户表被映射到我的任何Java实体。
答案 0 :(得分:11)
您可以使用createNativeQuery在数据库上执行任意SQL。
EntityManager em = emf.createEntityManager();
List<Object> results = em.createNativeQuery("SELECT custom FROM my_data").getResultList();
上述答案仍然适用,但我想修改一些其他信息,这些信息也可能与查看此问题的人有关。
虽然您可以使用createNativeQuery方法通过EntityManager执行本机查询;如果您使用Spring Framework,还有另一种(可以说是更好的)方法。
使用Spring执行查询的替代方法(将使用已配置的事务执行)是使用JDBCTemplate。可以在同一个应用程序中同时使用JDBCTemplate 和 JPA EntityManager。配置看起来像这样:
InfrastructureConfig.class:
@Configuration
@Import(AppConfig.class)
public class InfrastructureConfig {
@Bean //Creates an in-memory database.
public DataSource dataSource(){
return new EmbeddedDatabaseBuilder().build();
}
@Bean //Creates our EntityManagerFactory
public AbstractEntityManagerFactoryBean entityManagerFactory(DataSource dataSource){
LocalContainerEntityManagerFactoryBean emf = new LocalContainerEntityManagerFactoryBean();
emf.setDataSource(dataSource);
emf.setJpaVendorAdapter(new HibernateJpaVendorAdapter());
return emf;
}
@Bean //Creates our PlatformTransactionManager. Registering both the EntityManagerFactory and the DataSource to be shared by the EMF and JDBCTemplate
public PlatformTransactionManager transactionManager(EntityManagerFactory emf, DataSource dataSource){
JpaTransactionManager tm = new JpaTransactionManager(emf);
tm.setDataSource(dataSource);
return tm;
}
}
AppConfig.class:
@Configuration
@EnableTransactionManagement
public class AppConfig {
@Bean
public MyService myTransactionalService(DomainRepository domainRepository) {
return new MyServiceImpl(domainRepository);
}
@Bean
public DomainRepository domainRepository(JdbcTemplate template){
return new JpaAndJdbcDomainRepository(template);
}
@Bean
public JdbcTemplate jdbcTemplate(DataSource dataSource){
JdbcTemplate template = new JdbcTemplate(dataSource);
return template;
}
}
一个使用JPA和JDBC的示例存储库:
public class JpaAndJdbcDomainRepository implements DomainRepository{
private JdbcTemplate template;
private EntityManager entityManager;
//Inject the JdbcTemplate (or the DataSource and construct a new JdbcTemplate)
public DomainRepository(JdbcTemplate template){
this.template = template;
}
//Inject the EntityManager
@PersistenceContext
void setEntityManager(EntityManager entityManager) {
this.entityManager = entityManager;
}
//Execute a JPA query
public DomainObject getDomainObject(Long id){
return entityManager.find(id);
}
//Execute a native SQL Query
public List<Map<String,Object>> getData(){
return template.queryForList("select custom from my_data");
}
}
答案 1 :(得分:2)
您可以使用EntityManager.createNativeQuery(String sql)来使用直接sql代码或使用EntityManager.createNamedQuery(String name)来执行预编译查询。 您仍然使用Spring管理的实体管理器,但处理非托管对象