【发布时间】:2020-02-26 11:14:55
【问题描述】:
我有以下方法。第一个是原生 sql,第二个是 JPA 查询。
@Query(value = "SELECT id AS id," +
" col1 AS col1," +
" col2 AS col2," +
" col3 AS col3," +
" col4 AS col4," +
" col5 AS col5," +
" col6 AS col6," +
" col7 AS col7," +
" col8 AS col8," +
" col9 AS col9," +
" col10 AS col10," +
" col11 AS col11," +
" col12 AS col12," +
" col13 AS col13" +
"FROM foo " +
"WHERE id = :id AND col1 = :col1", nativeQuery = true)
List<Foo> findFooByIdAndCol1(@Param("id") final Long id, @Param("col1") final Long col1);
List<FooEntity> findByIdAndCol1(Long id, Long col1);
日志
----Native sql -----
2020-02-26 10:17:04.908 DEBUG 3888 --- [ main] org.hibernate.SQL : SELECT id AS id, col1 AS col1, col2 AS col2, col3 AS col3, col4 AS col4, col5 AS col5, col6 AS col6, col7 AS col7, col8 AS col8, col9 AS col9, col10 AS col10, col11 AS col11, col12 AS col12, col13 AS col13 FROM foo WHERE id = ? AND col1 = ?
2020-02-26 10:17:04.915 TRACE 3888 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [1]
2020-02-26 10:17:04.915 TRACE 3888 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [BIGINT] - [1]
-----JPA query -----
2020-02-26 10:17:04.956 DEBUG 3888 --- [ main] org.hibernate.SQL : select foo0_.id as id1_0_, foo0_.col1 as col1_0_, foo0_.col2 as col2_3_0_, foo0_.col3 as col3_4_0_, foo0_.col4 as col4_5_0_, foo0_.col5 as col5_6_0_, foo0_.col6 as col6_7_0_, foo0_.col7 as col7_8_0_, foo0_.col8 as col8_9_0_, foo0_.col9 as col9_10_0_, foo0_.col10 as col10_20_0_, foo0_.col11 as col11_11_0_, foo0_.col12 as col12_12_0_, foo0_.col13 as col13_13_0_, foo0_.col14 as col14_14_0_, foo0_.col15 as col15_0_, foo0_.col16 as col16_16_0_, foo0_.col18 as col18_17_0_, foo0_.col19 as col19_18_0_, foo0_.col20 as col120_19_0_ from foo foo0_ where foo0_.id=? and foo0_.col1=?
2020-02-26 10:17:04.956 TRACE 3888 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [1] as [BIGINT] - [1]
2020-02-26 10:17:04.956 TRACE 3888 --- [ main] o.h.type.descriptor.sql.BasicBinder : binding parameter [2] as [BIGINT] - [1]
看起来当它运行它在日志中发出相同的查询时。我用数据库中的 10k 条记录对此进行了测试。 原生查询:54.7s JPA:74秒
在我的用例中,本机 sql 查询是否比 JPA 更好?或者有什么方法可以提高 JPA 的性能。 (注意:我知道有分页和获取类型等。但这不是我要找的)
【问题讨论】:
标签: java hibernate jpa spring-data-jpa