As , we know , Groovy syntax accepts closures .

Today also, Java 8 adds in its syntax closure .

However , When i write java8 closure in groovy file , i get an error like the following :

Person.findAll().stream().filter(e-> e.age > 20)

We get this error :

org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:

Script1.groovy: 7: unexpected token: -> @ line 7, column 39.

Person.findAll().stream().filter(e-> e.controllerId > 0)

^

1 error

Nevertheless , the following works successully :

Person.findAll().stream()

解决方案

Yeah, the Groovy parser does not accept Java 8 Lambdas (not closures).

You can use a closure in place of it (assuming you're on Groovy 2.3.*)

ie:

Person.findAll().stream().filter( { e -> e.age > 20 } )

Logo

魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。

更多推荐