Jochen Pier

Results 8 comments of Jochen Pier

We are using it for an upcoming service at a big german website. Very handy and useful. And speedy :) We love the "compatibility" with twig, because we have a...

no - never used it. Processing the model in a parallel task would make make more sense, because normally getting the data is a lot more time consuming than parsing...

That is a nice idea. I'll try this - thank you!

Thank you for your answer! The problem with the custom-function: It does not get a handle to the current http-request. So you can't react on cookies or the current path......

Yes, I know RequestContextHolder. But it is kind of ugly and hard to test... (But of course better than nothing!)

I just tried it with Spring Boot 2.x and it works without problems. See /jochen777/jWebFormSpringBoot2Thymeleaf The problem is, that our own project is still running on 1.5.x. We plan to...

Thank you for this hint and I get the point. Here are some suggestions: - FormModel - TemplateData - RenderData - FormRenderer - FormData - FormDefintion What do you think?...

Ok, I refactored it to FormModel. The FormResult now must be passed directly to the template. Example: `FormResult formResult = form.run(...); model.addAttribute("form", formResult);`