Christian Kaltepoth

Results 179 comments of Christian Kaltepoth

Thanks a lot for reporting this. Maybe a first step would be to get a failing testcase that reproduces this issue? Not sure if you saw the `testsuite` directory which...

Hey @hantsy, thanks for filing this issue and sorry for my delayed response. Regarding (1): I wonder if this is more a spec issues. I agree that MVC is more...

@erdlet Interesting idea. Or maybe `BindingResult` should be accessible via `MvcContext`. This way you could do something like `#{mvc.bindingResult.failed}`.

> This would be a possibility too. But it would need an API change, whereas the simple "put the binding result into the model" can be implemented relatively fast without...

> It would work, but I don't think a bypass of the spec is really good. It'd be more a hack than a good solution :/ I *could* argue that...

@mthmulders What you are seeing in your reproducer project is actually the default behavior for JAX-RS when Bean Validation is provided by the runtime. In this case, requests are validated...

Let's start some discussion about how this could look like in MVC. Basically the goal would be to provide a way to reference static assets without using any Servlet specific...

> Maybe we can additionally make the API more meaningful and provide some "standard" directories so users have a template, like `/styles` for CSS files or other style related content,...

Isn't `Class#getResource` using the class loader of the class on which you call that method? And depending on which class this is, there maybe issues locating the resources depending on...

I guess that's because app servers handle the class loader complexity quite differently!?