Artur

Results 223 comments of Artur

Potential solutions (I did not really think these through): 1. Lock on vaadin context in `getCachedIndexHtmlDocument` to avoid locking in another order. Seems quite fragile and there might be other...

Let's try to stay on the Spring Boot 3 / JakartaEE 9 version for now unless there is some reason to move forward

This fails because of https://github.com/vitejs/vite/issues/10373

`` now works with lit 2.0.0-pre.1 but from this plugin I get ``` Unknown attribute '________________________________'. ``` would be cool to get lit 2 support

@jfarcand can you have a look at this, your email is not working

Interesting... in what way as / or /servlet/ should be valid mappings?

Have not tested with atmosphere samples but I guess if you deploy a servlet to /* and try to use / for the websocket connection, it won’t work

The core problem: Deploying a servlet using "/*" should deploy a websocket endpoint at `/`. Similarly, deployingn a servlet as `/foo/*` should deploy a websocket endpoint at `/foo/`

JSR356AsyncSupport.java: ``` if (servletPath == null) { servletPath = IOUtils.guestServletPath(config); if (servletPath.equals("") || servletPath.equals("/") || servletPath.equals("/*")) { servletPath = PATH +"}"; } } ``` For `/*`, `IOUtils.guestServletPath(config);` returns `""` and...