Re: Error 502 for examples8x

2021-01-18 Thread Maxim Solodovnik
Have checked wrong VM :(( everything seems to work now (VM was rebooted) On Tue, 19 Jan 2021 at 12:00, Maxim Solodovnik wrote: > weird enough :( > docker processes are up > Apache is OK > > will try to check the logs ... > > > On Tue, 19 Jan 2021 at 03:44, Leonardo D'Alimonte > wrote: > >> I t

Re: Error 502 for examples8x

2021-01-18 Thread Maxim Solodovnik
weird enough :( docker processes are up Apache is OK will try to check the logs ... On Tue, 19 Jan 2021 at 03:44, Leonardo D'Alimonte wrote: > I think error 502 - Proxy error happened again for Wicket 8 examples URL.. > > On Fri, Dec 25, 2020 at 9:16 AM Maxim Solodovnik > wrote: > > > Just ha

Re: Error 502 for examples8x

2021-01-18 Thread Leonardo D'Alimonte
I think error 502 - Proxy error happened again for Wicket 8 examples URL.. On Fri, Dec 25, 2020 at 9:16 AM Maxim Solodovnik wrote: > Just have checked: works for me :) > > On Wed, 23 Dec 2020 at 20:30, Francois Meillet > > wrote: > > > There is a 502 for https://examples8x.wicket.apache.org/ind

Re: Illegal Reflective Access in DefaultPropertyLocator

2021-01-18 Thread Rob Audenaerde
java.time.LocalDateTime does not have a `getDate` / `setDate`, so what you did before was depending on internal implementation of LocalDateTime anyway (private members), and not a very nice thing to do :). You should write proper models for dealing with it, or write custom converters I guess. On

Re: Illegal Reflective Access in DefaultPropertyLocator

2021-01-18 Thread Bas Gooren
Hi! That’s actually quite easy to replace: If you have a model containing the LocalDateTime, change the call to: var model = Model.of( LocalDateTime.now() ); model.map( LocalDateTime::toLocalDate ); Since the “date” field is private final I assume your model was read-only. Met vriendelijke gro

Illegal Reflective Access in DefaultPropertyLocator

2021-01-18 Thread Johannes Renoth
Hello, In my project i have the following Warning since the Update to Java 11: The issue remains even after trying with the latest Version 9.2.0 I am using a LocalDateTime Model Object with PropertyModel(LocalDateTime, "date"). Of course i could try to split my Model into two parts date and tim

Illegal Reflective Access in PropertyModel

2021-01-18 Thread Bernd Lauert
Hello, In my project i have the following Warning since the Update to Java 11: The issue remains even after trying with the latest Version 9.2.0 I am using a LocalDateTime Model Object with PropertyModel(LocalDateTime, "date"). Of course i could try to split my Model into two parts date and tim