mirror of
https://github.com/cna-bootcamp/phonebill.git
synced 2025-12-06 08:06:24 +00:00
kos-mock Redis 및 Cache 의존성 제거: @EnableCaching 제거, spring-boot-starter-data-redis 및 spring-boot-starter-cache 의존성 제거로 불필요한 Redis 연결 문제 해결
This commit is contained in:
parent
0ec0d562a8
commit
bf353ad4a5
@ -12,8 +12,6 @@ dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-validation'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-actuator'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-cache'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-redis'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
|
||||
|
||||
// Database (Mock 서비스용 H2)
|
||||
|
||||
@ -12,7 +12,6 @@ import org.springframework.cache.annotation.EnableCaching;
|
||||
* KOS Mock Service 메인 애플리케이션 클래스
|
||||
*/
|
||||
@SpringBootApplication
|
||||
@EnableCaching
|
||||
@RequiredArgsConstructor
|
||||
@Slf4j
|
||||
public class KosMockApplication implements CommandLineRunner {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user