Using HibernateUtil, write me a code that queries all instances that have date in september.
public List<Foo> findAllFooInSep(List<Foo> allFoo){ List result = new ArrayList(); for(Foo foo: allFoo){ if(foo.getDate() >= 20180901){ result.add(foo); } } return result; }