[Documentation](https://docs.spring.io/spring-security/reference/servlet/authorization/authorize-http-requests.html) (Example 2) states that it's possible to write ``` http.authorizeHttpRequests(authorize -> authorize.mvcMatchers("/db/**").access("hasRole('ADMIN') and hasRole('DBA')") ``` but there's no `access(String)` method. Here's my SO question with background information: https://stackoverflow.com/questions/72366267/matching-ip-address-with-authorizehttprequests I'm using Spring Security 5.7.1.