File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
srv/src/main/java/my/bookshop/config Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1616
1717 <!-- DEPENDENCIES VERSION -->
1818 <jdk .version>17</jdk .version>
19- <cds .services.version>2.0.1 </cds .services.version>
20- <spring .boot.version>3.0.7 </spring .boot.version>
19+ <cds .services.version>2.0.2 </cds .services.version>
20+ <spring .boot.version>3.0.8 </spring .boot.version>
2121 <cloud .sdk.version>4.14.0</cloud .sdk.version>
2222 <xsuaa .version>3.0.1</xsuaa .version>
2323 <cf-java-logging-support .version>3.7.0</cf-java-logging-support .version>
24- <cds .install-cdsdk.version>7.0.0 </cds .install-cdsdk.version>
24+ <cds .install-cdsdk.version>7.0.1 </cds .install-cdsdk.version>
2525 </properties >
2626
2727 <modules >
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ public class WebSecurityConfig {
1818
1919 @ Bean
2020 public SecurityFilterChain configure (HttpSecurity http ) throws Exception {
21- return http .securityMatchers () .requestMatchers (antMatcher ("/actuator/health" ), antMatcher ("/swagger/**" )) //
22- .and (). csrf () .disable ().authorizeHttpRequests () .anyRequest ().permitAll (). and ( )
21+ return http .securityMatchers (s -> s .requestMatchers (antMatcher ("/actuator/health" ), antMatcher ("/swagger/**" ) )) //
22+ .csrf (c -> c .disable ()) .authorizeHttpRequests (a -> a .anyRequest ().permitAll ())
2323 .build ();
2424 }
2525}
You can’t perform that action at this time.
0 commit comments