|
| 1 | +package demo.benchmark; |
| 2 | + |
| 3 | +import java.util.concurrent.TimeUnit; |
| 4 | + |
| 5 | +import org.openjdk.jmh.annotations.Benchmark; |
| 6 | +import org.openjdk.jmh.annotations.BenchmarkMode; |
| 7 | +import org.openjdk.jmh.annotations.Measurement; |
| 8 | +import org.openjdk.jmh.annotations.Mode; |
| 9 | +import org.openjdk.jmh.annotations.Scope; |
| 10 | +import org.openjdk.jmh.annotations.Setup; |
| 11 | +import org.openjdk.jmh.annotations.State; |
| 12 | +import org.openjdk.jmh.annotations.Warmup; |
| 13 | +import org.openjdk.jmh.results.format.ResultFormatType; |
| 14 | +import org.openjdk.jmh.runner.Runner; |
| 15 | +import org.openjdk.jmh.runner.options.Options; |
| 16 | +import org.openjdk.jmh.runner.options.OptionsBuilder; |
| 17 | +import org.springframework.context.annotation.AnnotationConfigApplicationContext; |
| 18 | + |
| 19 | +import demo.jdbc.JdbcConfig; |
| 20 | +import demo.jdbc.Product; |
| 21 | +import demo.jdbc.ProductRepository; |
| 22 | + |
| 23 | +@State(Scope.Thread) |
| 24 | +@BenchmarkMode(Mode.AverageTime) |
| 25 | +@Warmup(iterations = 10) |
| 26 | +@Measurement(iterations = 10) |
| 27 | +public class SpringDataJdbcBenchmarking { |
| 28 | + |
| 29 | + private ProductRepository productJdbcRepository; |
| 30 | + |
| 31 | + private int id; |
| 32 | + |
| 33 | + @Setup |
| 34 | + public void setup() { |
| 35 | + initEm(); |
| 36 | + |
| 37 | + Product product = new Product(); |
| 38 | + product.setName("phone"); |
| 39 | + productJdbcRepository.save(product); |
| 40 | + id = product.getId(); |
| 41 | + } |
| 42 | + |
| 43 | + private void initEm() { |
| 44 | + AnnotationConfigApplicationContext context = |
| 45 | + new AnnotationConfigApplicationContext( |
| 46 | + JdbcConfig.class); |
| 47 | + productJdbcRepository = context.getBean(ProductRepository.class); |
| 48 | + } |
| 49 | + |
| 50 | + @Benchmark |
| 51 | + public demo.jdbc.Product springDataJdbcQuery() { |
| 52 | + return productJdbcRepository.findByName("phone"); |
| 53 | + } |
| 54 | + |
| 55 | + //@Benchmark |
| 56 | + public demo.jdbc.Product insertProductJdbc() { |
| 57 | + demo.jdbc.Product product = new demo.jdbc.Product(); |
| 58 | + product.setName("phone"); |
| 59 | + return productJdbcRepository.save(product); |
| 60 | + } |
| 61 | + |
| 62 | + |
| 63 | + public static void main(String... args) throws Exception { |
| 64 | + Options opts = new OptionsBuilder().include(".*") |
| 65 | + .warmupIterations(5) |
| 66 | + .measurementIterations(5) |
| 67 | + .mode(Mode.AverageTime) |
| 68 | + .timeUnit(TimeUnit.NANOSECONDS).jvmArgs("-server").forks(1).resultFormat(ResultFormatType.TEXT).build(); |
| 69 | + |
| 70 | + new Runner(opts).run(); |
| 71 | + } |
| 72 | +} |
0 commit comments