I am calling findall() method of the JpaRepository as following
Service
on.findall(specificationsbuilder.getspecifications(params), paegable obj)
specificationsbuilder.getspecifications(param)
returns specifications
My question is if specifications is null will my will findall(specifications,paegable) work
According to the sourcecode of SimpleJpaRepository it should work, because @Nullable says it will accept null: