File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/main/kotlin/com/back/koreaTravelGuide
domain/ai/aiChat/controller Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- package com.back.koreaTravelGuide.application
1+ package com.back.koreaTravelGuide
22
33// TODO: 메인 애플리케이션 클래스 - 스프링 부트 시작점 및 환경변수 로딩
44import io.github.cdimascio.dotenv.dotenv
5+ import org.springframework.ai.model.chat.memory.repository.jdbc.autoconfigure.JdbcChatMemoryRepositoryAutoConfiguration
56import org.springframework.boot.autoconfigure.SpringBootApplication
67import org.springframework.boot.runApplication
78
8- @SpringBootApplication(scanBasePackages = [" com.back.koreaTravelGuide" ])
9+ @SpringBootApplication(
10+ scanBasePackages = [" com.back.koreaTravelGuide" ],
11+ exclude = [JdbcChatMemoryRepositoryAutoConfiguration ::class ],
12+ )
913class KoreaTravelGuideApplication
1014
1115fun main (args : Array <String >) {
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ class ChatController(
117117 return emitter
118118 }
119119
120- // 날씨 API 직접 테스트용 엔드포인트
120+ // 날씨 API 직접 테스트용 엔드포인트
121121 @GetMapping(" /weather/test" )
122122 fun testWeather (
123123 @RequestParam(required = false ) baseTime : String? ,
You can’t perform that action at this time.
0 commit comments