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()
同じ最終結果、非常に異なるメカニズム。