Marcus Hert Da Coregio

Results 214 comments of Marcus Hert Da Coregio

I like this too, I have achieve this by doing the following: ``` div[dnd-draggable] { cursor: -webkit-grab !important; &.dnd-drag-start { cursor: -webkit-grabbing !important; } } ``` Where `div` can be...

Hi @cokeBeer, which version of Spring Security/Spring Boot are you using? I don't see too many errors when trying in my IDE. Can you point out which specific errors you...

Great, the ticket is yours. Please base your branch on `5.7.x`.

I'm sorry for the delay in responding @cokeBeer. Yes, the method exists in the `authorizeRequests` DSL, and it accepts an arbitrary expression to secure the URLs, i.e `access("hasRole('USER'))`. You can...

Hello @mdeinum. You would have to create an `AuthorizationManager` that combines other `AuthorizationManager`s. There is already a PR to simplify the `AuthorizationManager` composition, see https://github.com/spring-projects/spring-security/pull/11756. With that PR merged, you...

Depending on https://github.com/spring-projects/spring-framework/issues/28115 for Class Proxies and https://github.com/spring-projects/spring-framework/issues/28729

Method Security now works in native-image https://github.com/spring-projects/spring-aot-smoke-tests/tree/main/security-method

Thanks for the report @darkman97i, this might be a duplicate of https://github.com/spring-projects/spring-security/issues/11088. It should be confirmed as soon as someone from the team picks this up to analyze.

You can expose the `AuthenticationManager` yourself: ```java @Bean AuthenticationManager apiAuthenticationManager(InMemoryUserDetailsManager users, JdbcUserDetailsManager jdbcUsers) { DaoAuthenticationProvider provider = new DaoAuthenticationProvider(); provider.setUserDetailsService(users); DaoAuthenticationProvider jdbcProvider = new DaoAuthenticationProvider(); jdbcProvider.setUserDetailsService(jdbcUsers); return new ProviderManager(provider, jdbcProvider);...

Hi @igorpele, just a heads up that we are discussing this solution and I should get back to you soon.