Update authorize-http-requests.adoc

Comma added for java configuration 

Signed-off-by: Vyacheslav <43342280+cmmttd@users.noreply.github.com>
This commit is contained in:
Vyacheslav 2026-01-27 11:41:46 +01:00 committed by Rob Winch
parent 55ab498518
commit e029b3ac6f

View File

@ -192,7 +192,7 @@ public SecurityFilterChain web(HttpSecurity http) throws Exception {
.authorizeHttpRequests((authorize) -> authorize
.requestMatchers("/endpoint").hasAuthority("USER")
.anyRequest().authenticated()
)
);
// ...
return http.build();