-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #804 from woowacourse-teams/dev
release: v1.4.5
- Loading branch information
Showing
193 changed files
with
1,502 additions
and
3,287 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,15 +2,3 @@ | |
path = backend/src/main/resources/config | ||
url = [email protected]:zzimkkong/config.git | ||
branch = main | ||
[submodule "s3proxy/src/main/resources/s3proxy-config"] | ||
path = s3proxy/src/main/resources/s3proxy-config | ||
url = [email protected]:zzimkkong/s3proxy-config.git | ||
branch = main | ||
[submodule "backend/src/main/resources/infra-appender"] | ||
path = backend/src/main/resources/infra-appender | ||
url = [email protected]:zzimkkong/infra-appender.git | ||
branch = main | ||
[submodule "s3proxy/src/main/resources/config"] | ||
path = s3proxy/src/main/resources/config | ||
url = [email protected]:zzimkkong/config.git | ||
branch = main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 0 additions & 21 deletions
21
backend/src/main/java/com/woowacourse/zzimkkong/config/LogAspectConfig.java
This file was deleted.
Oops, something went wrong.
21 changes: 21 additions & 0 deletions
21
backend/src/main/java/com/woowacourse/zzimkkong/config/LogConfig.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package com.woowacourse.zzimkkong.config; | ||
|
||
import com.woowacourse.zzimkkong.config.logaspect.LogTraceIdInterceptor; | ||
import org.springframework.context.annotation.Configuration; | ||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; | ||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; | ||
|
||
@Configuration | ||
public class LogConfig implements WebMvcConfigurer { | ||
private final LogTraceIdInterceptor logTraceIdInterceptor; | ||
|
||
public LogConfig(final LogTraceIdInterceptor logTraceIdInterceptor) { | ||
this.logTraceIdInterceptor = logTraceIdInterceptor; | ||
} | ||
|
||
@Override | ||
public void addInterceptors(InterceptorRegistry registry) { | ||
registry.addInterceptor(logTraceIdInterceptor) | ||
.addPathPatterns("/**"); | ||
} | ||
} |
Oops, something went wrong.