Skip to content

Commit 9f3d22a

Browse files
authored
docs: document proper integration with Spring Security Concurrency (#4195)
Fixes vaadin/flow#20999
1 parent b9ab811 commit 9f3d22a

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

articles/flow/security/enabling-security.adoc

+44
Original file line numberDiff line numberDiff line change
@@ -517,6 +517,50 @@ For more information about navigation access control consult the <<{articles}/fl
517517

518518
Vaadin strongly recommends not to mix Spring's URL-pattern-based HTTP security and this view-based access control mechanism targeting the same views. Doing so might cause unwanted access configurations, and would be an unnecessary complication in the authorization of views.
519519

520+
== Spring Concurrency Support with Vaadin
521+
522+
Spring Security provides built-in https://docs.spring.io/spring-security/reference/servlet/integrations/concurrency.html[concurrency support] to propagate security contexts across asynchronous operations. One of the key components for this is [classname]`DelegatingSecurityContextExecutor`, which wraps an [classname]`Executor` and ensures that the [classname]`SecurityContext` is properly propagated to background tasks.
523+
524+
In a Vaadin application, [classname]`VaadinSecurityContextHolderStrategy` should be initialized before any custom [classname]`DelegatingSecurityContextExecutor` bean is created. This ensures that the correct security context holder is used, preventing potential issues with authentication propagation in async tasks.
525+
526+
To guarantee that [classname]`VaadinSecurityContextHolderStrategy` is set before the [classname]`DelegatingSecurityContextExecutor` bean is instantiated, consider the following approaches:
527+
528+
* add `@DependsOn("VaadinSecurityContextHolderStrategy")` to the custom [classname]`DelegatingSecurityContextExecutor` bean definition to explicitly enforce the initialization order
529+
* instead of relying on implicit ordering, have [classname]`VaadinSecurityContextHolderStrategy` directly injected into the bean method definition and manually wire it into the [classname]`DelegatingSecurityContextExecutor` instance.
530+
531+
532+
[source,java]
533+
.Using @DependsOn
534+
----
535+
@Bean
536+
@DependsOn("VaadinSecurityContextHolderStrategy")
537+
public DelegatingSecurityContextAsyncTaskExecutor taskExecutor() {
538+
var delegate = new ThreadPoolTaskExecutor();
539+
//configure the executor
540+
delegate.initialize();
541+
542+
return new DelegatingSecurityContextAsyncTaskExecutor(delegate);
543+
}
544+
----
545+
546+
[source,java]
547+
.Injecting VaadinSecurityContextHolderStrategy Manually
548+
----
549+
@Bean
550+
public DelegatingSecurityContextAsyncTaskExecutor taskExecutor(
551+
VaadinAwareSecurityContextHolderStrategy strategy) {
552+
var delegate = new ThreadPoolTaskExecutor();
553+
//configure the executor
554+
delegate.initialize();
555+
556+
var executor = new DelegatingSecurityContextAsyncTaskExecutor(delegate);
557+
executor.setSecurityContextHolderStrategy(strategy);
558+
return executor;
559+
}
560+
----
561+
562+
By applying either of these solutions, you ensure that the correct security context holder is used for asynchronous task execution in a Vaadin application.
563+
520564

521565
== Spring Impersonation with Vaadin
522566

0 commit comments

Comments
 (0)