Skip to content

Commit aa6c931

Browse files
committed
chore: add jooq example
1 parent 4738163 commit aa6c931

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

data-jdbc-jooq/src/main/java/com/example/OrderRepository.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package com.example;
22

3+
import jakarta.inject.Singleton;
34
import lombok.RequiredArgsConstructor;
45
import lombok.extern.slf4j.Slf4j;
56
import org.jooq.DSLContext;
@@ -14,6 +15,7 @@
1415

1516
@RequiredArgsConstructor
1617
@Slf4j
18+
@Singleton
1719
public class OrderRepository {
1820
private final DSLContext dslContext;
1921

0 commit comments

Comments
 (0)