File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed
Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1717import org .springframework .security .web .SecurityFilterChain ;
1818import org .springframework .security .web .authentication .UsernamePasswordAuthenticationFilter ;
1919import org .springframework .web .cors .CorsConfigurationSource ;
20- import jakarta .servlet .DispatcherType ;
2120
2221@ Configuration
2322@ EnableWebSecurity
@@ -36,9 +35,6 @@ public void enableThreadSecurityContextPropagation() {
3635 @ Bean
3736 public SecurityFilterChain securityFilterChain (HttpSecurity http , CorsConfigurationSource corsConfigurationSource ) throws Exception {
3837 http
39- // async dispatch는 Security 필터 적용 대상에서 제외
40- .securityMatcher (request -> request .getDispatcherType () != DispatcherType .ASYNC )
41-
4238 .csrf (AbstractHttpConfigurer ::disable ) // CSRF 비활성화
4339 .httpBasic (AbstractHttpConfigurer ::disable ) // Basic Auth 비활성화
4440 .formLogin (AbstractHttpConfigurer ::disable ) // Form Login 비활성화
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ private void checkCpuMotherboardCompatibility(
151151 CompatibilityCheckResultDto result = promptService .parseCompatibilityResponse (
152152 response , 1 , "CPU ↔ 메인보드 호환성"
153153 );
154-
154+ resultCallback . accept ( result );
155155
156156 } catch (Exception e ) {
157157 log .error ("CPU ↔ 메인보드 호환성 검사 중 오류 발생" , e );
Original file line number Diff line number Diff line change 4848aws :
4949 s3 :
5050 region : ${AWS_S3_REGION}
51- bucket : ${AWS_S3_BUCKET}
51+ bucket : ${AWS_S3_BUCKET}
52+
53+ gemini :
54+ api :
55+ key : ${GEMINI_API_KEY}
56+ model :
57+ name : " gemini-2.5-flash-lite-preview-06-17"
You can’t perform that action at this time.
0 commit comments