Dave Syer

Results 522 comments of Dave Syer

I think any app with a `module-info.java` would break. Here's a sample (lifted from the JStachio project): https://github.com/dsyer/jstachio-spring-example.

That was a comment about graceful shutdown. Did you link to the wrong place?

I'm pretty sure HTMX just sends all the form inputs (including the thymeleaf-generated ones), so as long as `hx-post` is inside a form it should just work? If you are...

That's a good example. If it isn't in a form, you can add the csrf token manually I guess, and tell HTMX about it with the `hx-include`. Personally I would...

It's definitely not usable with Knative. I'm using Telepresence2 so the commands are different from the examples in @lisamburns comment, but the experience is similar. I can't get `telepresense intercept`...

I forget. I think maybe when the cache was removed I got a more sensible error message. I was able to debug and make progress anyway.

Here's an implementation that works, but probably needs a lot of polish: ```java @Component @Order(Ordered.HIGHEST_PRECEDENCE) public class CompositeViewRenderer implements HandlerResultHandler { private final ViewResolver resolver; public CompositeViewRenderer(ViewResolver resolver) { this.resolver...

Here's a sample app with Webflux and Thymeleaf: https://github.com/dsyer/spring-todo-mvc. The tests are green, but it doesn't work in the browser because the wrong stuff is rendered most of the time....

How am I using it? Well not using really, just attempting to use it - via VSCode as it happens, but probably it would be the same for CLI. It...

Definitely not stale