I need to call static method of org.hibernate.Hibernate class. How to do that in element of flow ?
You can use the following Spring EL construct to evaluate static methods:
<evaluate expression="T(org.hibernate.Hibernate).initialize(yourObject)"/>
See the appropriate Spring EL reference part: