Sébastien Deleuze

Results 592 comments of Sébastien Deleuze
trafficstars

FYI we are now able to run a [Kotlin/Wasm HTTP server via KoWasm on Node.js](https://twitter.com/sdeleuze/status/1629930949944147968) and I would be happy to leverage Wasmtime to run it as soon as it...

Let's try to see if we can leverage `CoWebFilter` to support this use case by taking inspiration of https://github.com/spring-projects/spring-framework/issues/26977#issuecomment-1696376264.

`CoWebFilter` now allows to customize, potentially dynamically based on the request, the `CoroutinesContext`.

Please create a new dedicated issue with a reproducer if you think there is something to refine/fix.

This issue is tightly related to #31765, we now document this native limitation in Spring Framework reference documentation and Spring Boot wiki. I tend to think the maintenance burden of...

That's an interesting one. We have: ```java @Component @Aspect public class TestAspect { @Around("@within(org.goafabric.calleeservice.aspect.TestAnnotation)") public Object around(ProceedingJoinPoint joinPoint) throws Throwable { try { return joinPoint.proceed(); } finally { final Method...

I confirm the example is now working as expected with method hints (`hints.reflection().registerType(TestAspect.class, MemberCategory.INVOKE_DECLARED_METHODS);`) which will be inferred via #28711.

Thanks should go to @jhoeller for the fix ;-) You can override the Framework version in Boot, otherwise just wait a bit, Spring Framework 6.0.4 has been released today and...