Skip to content

Commit 92ede0f

Browse files
committed
chore: cloudwatch 의존성 제거
1 parent ea207d1 commit 92ede0f

File tree

3 files changed

+0
-66
lines changed

3 files changed

+0
-66
lines changed

build.gradle.kts

-2
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,6 @@ dependencies {
7575
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
7676
// Bucket4j
7777
implementation("com.github.vladimir-bukhtoyarov:bucket4j-core:7.6.0")
78-
// aws cloud watch
79-
implementation("ca.pjer:logback-awslogs-appender:1.6.0")
8078
// cache
8179
implementation("org.springframework.boot:spring-boot-starter-cache")
8280
implementation("net.sf.ehcache:ehcache:2.10.6")

src/main/kotlin/com/example/jhouse_server/global/config/WebConfig.kt

-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ class WebConfig (
1616
val authUserResolver: AuthUserResolver,
1717
val httpInterceptor: HttpInterceptor,
1818
val smsInterceptor: SmsInterceptor,
19-
// val logInterceptor: LogInterceptor
2019
): WebMvcConfigurer {
2120

2221

@@ -48,9 +47,6 @@ class WebConfig (
4847
}
4948

5049
override fun addInterceptors(registry: InterceptorRegistry) {
51-
// registry.addInterceptor(logInterceptor)
52-
// .addPathPatterns("/**")
53-
// .excludePathPatterns("/css/**", "/error")
5450
registry.addInterceptor(LoginCheckInterceptor())
5551
.order(1)
5652
.addPathPatterns("/**")

src/main/kotlin/com/example/jhouse_server/global/interceptor/LogInterceptor.kt

-60
This file was deleted.

0 commit comments

Comments
 (0)