You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Sven Ludwig <s_...@gmx.de> on 2016/01/08 01:57:07 UTC

Re: Wicket 8

Hi!

it has been a while. I just checked https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+8.0 and https://wicket.apache.org/start/wicket-8.x.html

Can you provide a few links or pointers to commits, classes, methods, tests or functional interfaces (just as you see fit) regarding specifically the support for Lambda handlers?

I would really like to have a closer look if code already exists and I would prefer to start with a hint from one of the devs.

Kind Regards,
Sven


On 25.10.15 at 02:57, Mihir Chhaya wrote:

> Thanks for the reply.
> 
> 
> 
> -Mihir.
> 
> 
> 
> On Sat, Oct 24, 2015, 8:18 AM Martijn Dashorst <ma...@gmail.com>
> 
> wrote:
> 
> 
> 
> > No. I don't think it will be in 6 months. We might do some milestones.
> 
> >
> 
> > We'll be sure to get Java 8 features right.
> 
> >
> 
> > Martijn
> 
> >
> 
> > On Saturday, 24 October 2015, Mihir Chhaya <mi...@gmail.com> wrote:
> 
> >
> 
> > > Hello,
> 
> > >
> 
> > > On apache wicket website download section, there is link for wicket 8
> 
> > > snapshot. Just curious; is there planned or projected date decided for
> 
> > the
> 
> > > final release?
> 
> > >
> 
> > > Thanks,
> 
> > > -Mihir.
> 
> > >
> 
> >
> 
> >
> 
> > --
> 
> > Become a Wicket expert, learn from the best: http://wicketinaction.com
> 
> >

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket 8

Posted by andrea del bene <an...@gmail.com>.

On 08/01/2016 10:19, Martin Grigorov wrote:
> Hi,
>
> On Fri, Jan 8, 2016 at 10:15 AM, andrea del bene <an...@gmail.com>
> wrote:
>
>> So far the most notable things you can find in branch lambdas are new
>> lambda-enhanced models (see
>> https://github.com/apache/wicket/commit/ae70d7d02821695e165e3a36828792de8d21f14c)
>> and MarkupContainer#childrenStream to access children component as Java 8
>> Stream (see
>> https://github.com/apache/wicket/commit/73ac8c7e6da3ff9dd0244ad66c63944ba3d64c78
>> ).
>
> What do you think about introducing wicket-java8 (or a better name) Maven
> module that provides Java 8 related goodies which are not really needed in
> -core ?
> As I said when it was introduced this stream based iterator is much slower
> than the non-stream version. I'd prefer to either remove it or move it to
> -java8 module and add javadoc about the good and bad parts in it.
>
For me it's fine if we want to move away the stream based iterator, but 
I wouldn't create a separate module for java 8 goodies. In this specific 
case we can simply add a class to utility module that turns a generic 
iterable into a stream. Then we can document this class in the user 
guide showing how to obtain a stream of children components and warning 
users about the performance issue they might encounter.

>>
>> Andrea.
>>
>>
>> On 08/01/2016 09:56, Martin Grigorov wrote:
>>
>>> Hi,
>>>
>>> The migration guide is still very short, i.e. there are no many changes in
>>> master branch yet:
>>> https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+8.0
>>> There are some changes in branch lambdas (
>>> https://github.com/apache/wicket/tree/lambdas) which have to be evaluated
>>> and eventually merged to master.
>>
>>> Martin Grigorov
>>> Wicket Training and Consulting
>>> https://twitter.com/mtgrigorov
>>>
>>> On Fri, Jan 8, 2016 at 1:57 AM, Sven Ludwig <s_...@gmx.de> wrote:
>>>
>>> Hi!
>>>> it has been a while. I just checked
>>>> https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+8.0
>>>> and https://wicket.apache.org/start/wicket-8.x.html
>>>>
>>>> Can you provide a few links or pointers to commits, classes, methods,
>>>> tests or functional interfaces (just as you see fit) regarding
>>>> specifically
>>>> the support for Lambda handlers?
>>>>
>>>> I would really like to have a closer look if code already exists and I
>>>> would prefer to start with a hint from one of the devs.
>>>>
>>>> Kind Regards,
>>>> Sven
>>>>
>>>>
>>>> On 25.10.15 at 02:57, Mihir Chhaya wrote:
>>>>
>>>> Thanks for the reply.
>>>>>
>>>>>
>>>>> -Mihir.
>>>>>
>>>>>
>>>>>
>>>>> On Sat, Oct 24, 2015, 8:18 AM Martijn Dashorst <
>>>>>
>>>> martijn.dashorst@gmail.com>
>>>>
>>>>> wrote:
>>>>>
>>>>>
>>>>>
>>>>> No. I don't think it will be in 6 months. We might do some milestones.
>>>>>> We'll be sure to get Java 8 features right.
>>>>>> Martijn
>>>>>> On Saturday, 24 October 2015, Mihir Chhaya <mi...@gmail.com>
>>>>>>
>>>>> wrote:
>>>>> Hello,
>>>>>>> On apache wicket website download section, there is link for wicket 8
>>>>>>> snapshot. Just curious; is there planned or projected date decided
>>>>>>>
>>>>>> for
>>>>> the
>>>>>>> final release?
>>>>>>> Thanks,
>>>>>>> -Mihir.
>>>>>>>
>>>>>> --
>>>>>> Become a Wicket expert, learn from the best: http://wicketinaction.com
>>>>>>
>>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>>>> For additional commands, e-mail: users-help@wicket.apache.org
>>>>
>>>>
>>>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>


Re: Wicket 8

Posted by Martin Grigorov <mg...@apache.org>.
Hi,

On Fri, Jan 8, 2016 at 10:15 AM, andrea del bene <an...@gmail.com>
wrote:

> So far the most notable things you can find in branch lambdas are new
> lambda-enhanced models (see
> https://github.com/apache/wicket/commit/ae70d7d02821695e165e3a36828792de8d21f14c)
> and MarkupContainer#childrenStream to access children component as Java 8
> Stream (see
> https://github.com/apache/wicket/commit/73ac8c7e6da3ff9dd0244ad66c63944ba3d64c78
> ).


What do you think about introducing wicket-java8 (or a better name) Maven
module that provides Java 8 related goodies which are not really needed in
-core ?
As I said when it was introduced this stream based iterator is much slower
than the non-stream version. I'd prefer to either remove it or move it to
-java8 module and add javadoc about the good and bad parts in it.


>
>
> Andrea.
>
>
> On 08/01/2016 09:56, Martin Grigorov wrote:
>
>> Hi,
>>
>> The migration guide is still very short, i.e. there are no many changes in
>> master branch yet:
>> https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+8.0
>> There are some changes in branch lambdas (
>> https://github.com/apache/wicket/tree/lambdas) which have to be evaluated
>> and eventually merged to master.
>
>
>> Martin Grigorov
>> Wicket Training and Consulting
>> https://twitter.com/mtgrigorov
>>
>> On Fri, Jan 8, 2016 at 1:57 AM, Sven Ludwig <s_...@gmx.de> wrote:
>>
>> Hi!
>>>
>>> it has been a while. I just checked
>>> https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+8.0
>>> and https://wicket.apache.org/start/wicket-8.x.html
>>>
>>> Can you provide a few links or pointers to commits, classes, methods,
>>> tests or functional interfaces (just as you see fit) regarding
>>> specifically
>>> the support for Lambda handlers?
>>>
>>> I would really like to have a closer look if code already exists and I
>>> would prefer to start with a hint from one of the devs.
>>>
>>> Kind Regards,
>>> Sven
>>>
>>>
>>> On 25.10.15 at 02:57, Mihir Chhaya wrote:
>>>
>>> Thanks for the reply.
>>>>
>>>>
>>>>
>>>> -Mihir.
>>>>
>>>>
>>>>
>>>> On Sat, Oct 24, 2015, 8:18 AM Martijn Dashorst <
>>>>
>>> martijn.dashorst@gmail.com>
>>>
>>>> wrote:
>>>>
>>>>
>>>>
>>>> No. I don't think it will be in 6 months. We might do some milestones.
>>>>> We'll be sure to get Java 8 features right.
>>>>> Martijn
>>>>> On Saturday, 24 October 2015, Mihir Chhaya <mi...@gmail.com>
>>>>>
>>>> wrote:
>>>
>>>> Hello,
>>>>>> On apache wicket website download section, there is link for wicket 8
>>>>>> snapshot. Just curious; is there planned or projected date decided
>>>>>>
>>>>> for
>>>
>>>> the
>>>>>
>>>>>> final release?
>>>>>> Thanks,
>>>>>> -Mihir.
>>>>>>
>>>>> --
>>>>> Become a Wicket expert, learn from the best: http://wicketinaction.com
>>>>>
>>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>>> For additional commands, e-mail: users-help@wicket.apache.org
>>>
>>>
>>>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>

Re: Wicket 8

Posted by andrea del bene <an...@gmail.com>.
So far the most notable things you can find in branch lambdas are new 
lambda-enhanced models (see 
https://github.com/apache/wicket/commit/ae70d7d02821695e165e3a36828792de8d21f14c) 
and MarkupContainer#childrenStream to access children component as Java 
8 Stream (see 
https://github.com/apache/wicket/commit/73ac8c7e6da3ff9dd0244ad66c63944ba3d64c78).

Andrea.

On 08/01/2016 09:56, Martin Grigorov wrote:
> Hi,
>
> The migration guide is still very short, i.e. there are no many changes in
> master branch yet:
> https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+8.0
> There are some changes in branch lambdas (
> https://github.com/apache/wicket/tree/lambdas) which have to be evaluated
> and eventually merged to master.
>
> Martin Grigorov
> Wicket Training and Consulting
> https://twitter.com/mtgrigorov
>
> On Fri, Jan 8, 2016 at 1:57 AM, Sven Ludwig <s_...@gmx.de> wrote:
>
>> Hi!
>>
>> it has been a while. I just checked
>> https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+8.0
>> and https://wicket.apache.org/start/wicket-8.x.html
>>
>> Can you provide a few links or pointers to commits, classes, methods,
>> tests or functional interfaces (just as you see fit) regarding specifically
>> the support for Lambda handlers?
>>
>> I would really like to have a closer look if code already exists and I
>> would prefer to start with a hint from one of the devs.
>>
>> Kind Regards,
>> Sven
>>
>>
>> On 25.10.15 at 02:57, Mihir Chhaya wrote:
>>
>>> Thanks for the reply.
>>>
>>>
>>>
>>> -Mihir.
>>>
>>>
>>>
>>> On Sat, Oct 24, 2015, 8:18 AM Martijn Dashorst <
>> martijn.dashorst@gmail.com>
>>> wrote:
>>>
>>>
>>>
>>>> No. I don't think it will be in 6 months. We might do some milestones.
>>>> We'll be sure to get Java 8 features right.
>>>> Martijn
>>>> On Saturday, 24 October 2015, Mihir Chhaya <mi...@gmail.com>
>> wrote:
>>>>> Hello,
>>>>> On apache wicket website download section, there is link for wicket 8
>>>>> snapshot. Just curious; is there planned or projected date decided
>> for
>>>> the
>>>>> final release?
>>>>> Thanks,
>>>>> -Mihir.
>>>> --
>>>> Become a Wicket expert, learn from the best: http://wicketinaction.com
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
>> For additional commands, e-mail: users-help@wicket.apache.org
>>
>>


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Wicket 8

Posted by Martin Grigorov <mg...@apache.org>.
Hi,

The migration guide is still very short, i.e. there are no many changes in
master branch yet:
https://cwiki.apache.org/confluence/display/WICKET/Migration+to+Wicket+8.0
There are some changes in branch lambdas (
https://github.com/apache/wicket/tree/lambdas) which have to be evaluated
and eventually merged to master.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Fri, Jan 8, 2016 at 1:57 AM, Sven Ludwig <s_...@gmx.de> wrote:

> Hi!
>
> it has been a while. I just checked
> https://cwiki.apache.org/confluence/display/WICKET/Ideas+for+Wicket+8.0
> and https://wicket.apache.org/start/wicket-8.x.html
>
> Can you provide a few links or pointers to commits, classes, methods,
> tests or functional interfaces (just as you see fit) regarding specifically
> the support for Lambda handlers?
>
> I would really like to have a closer look if code already exists and I
> would prefer to start with a hint from one of the devs.
>
> Kind Regards,
> Sven
>
>
> On 25.10.15 at 02:57, Mihir Chhaya wrote:
>
> > Thanks for the reply.
> >
> >
> >
> > -Mihir.
> >
> >
> >
> > On Sat, Oct 24, 2015, 8:18 AM Martijn Dashorst <
> martijn.dashorst@gmail.com>
> >
> > wrote:
> >
> >
> >
> > > No. I don't think it will be in 6 months. We might do some milestones.
> >
> > >
> >
> > > We'll be sure to get Java 8 features right.
> >
> > >
> >
> > > Martijn
> >
> > >
> >
> > > On Saturday, 24 October 2015, Mihir Chhaya <mi...@gmail.com>
> wrote:
> >
> > >
> >
> > > > Hello,
> >
> > > >
> >
> > > > On apache wicket website download section, there is link for wicket 8
> >
> > > > snapshot. Just curious; is there planned or projected date decided
> for
> >
> > > the
> >
> > > > final release?
> >
> > > >
> >
> > > > Thanks,
> >
> > > > -Mihir.
> >
> > > >
> >
> > >
> >
> > >
> >
> > > --
> >
> > > Become a Wicket expert, learn from the best: http://wicketinaction.com
> >
> > >
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>