한국어 | English
이 프로젝트는 JDBC API(Spring Data JPA(Hibernate), MyBatis, ...) 환경에서 쿼리 개수를 측정하는 간단한 도구입니다.
Multi-DataSource 환경에서도 원활하게 API 요청당 쿼리 개수를 측정할 수 있습니다.
Hibernate:
select
id,
name
from
example
Hibernate:
select
count(id)
from
example
ERROR --- 'GET /examples' - totalQueryCount: 2, totalSpendTime: 7ms
Important
Spring Boot 3.x는 jakarta.*
패키지를 사용하고 Spring Boot 2.x는 javax.*
패키지를 사용합니다. 프로젝트와 호환되는 라이브러리 버전을 선택해야 합니다.
사용중인 Spring Boot 버전에 따라 적절한 라이브러리 버전을 선택하세요:
Spring Boot Version | Library Version |
---|---|
Spring Boot 2.x | 2.x.x-spring-boot-2 |
Spring Boot 3.x | 2.x.x-spring-boot-3 |
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
// For Spring Boot 2.x
implementation 'com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-2'
// For Spring Boot 3.x
// implementation 'com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-3'
}
repositories {
mavenCentral()
maven { url = uri("https://jitpack.io") }
}
dependencies {
// For Spring Boot 2.x
implementation("com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-2")
// For Spring Boot 3.x
// implementation("com.github.Hyeon9mak:multi-datasource-query-counter:2.0.2-spring-boot-3")
}
우선순위는 다음과 같습니다: error
> warn
> info
.
enable
의 기본값은 false
이고, count
의 기본값은 1
입니다.
query-counter.logging.level:
error:
enable: true
count: 5
warn:
enable: true
count: 2
info:
enable: false
@CountQueries
어노테이션을 사용하여 측정하고 싶은 API에 지정하세요.
@CountQueries
@GetMapping("/examples")
public List<Example> getExamples() {
return repository.getExamples();
}
애플리케이션을 시작하고 로그를 확인하세요.
ERROR --- 'GET /examples' - totalQueryCount: 2, totalSpendTime: 7ms
이제부터 마음껏 즐기시면 됩니다! 🎉
JDBC API와 Spring AOP, CGLib 프록시를 기반으로 합니다.
... 이게 전부입니다!