You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: articles/flow/security/enabling-security.adoc
+44
Original file line number
Diff line number
Diff line change
@@ -517,6 +517,50 @@ For more information about navigation access control consult the <<{articles}/fl
517
517
518
518
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.
519
519
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);
By applying either of these solutions, you ensure that the correct security context holder is used for asynchronous task execution in a Vaadin application.
0 commit comments