Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这些方法之间有什么本质区别?
JdbcTemplate 的query () 和 EntityManager 的createQuery()?
据我了解,两者都执行查询?
JdbcTemplate.query()通过 Spring 的 JDBC API 执行原始 SQL 查询
JdbcTemplate.query()
EntityManager.createQuery()通过本机 JPA API 创建但不执行 JPA 查询。
EntityManager.createQuery()
相同的最终结果,非常不同的机制。