Removed Methods |
List<Object> findByExample(Object )
|
Execute a query based on the given example entity object. |
List<Object> findByExample(Object, int, int)
|
Execute a query based on a given example entity object. |
List<Object> findByExample(String, Object)
|
Execute a query based on the given example entity object. |
List<Object> findByExample(String, Object, int, int)
|
Execute a query based on a given example entity object. |
Added Methods |
List<T> findByExample(T )
|
Execute a query based on the given example entity object. |
List<T> findByExample(T, int, int)
|
Execute a query based on a given example entity object. |
List<T> findByExample(String, T)
|
Execute a query based on the given example entity object. |
List<T> findByExample(String, T, int, int)
|
Execute a query based on a given example entity object. |
Changed Methods |
List<?> find(String, Object[])
|
Change in return type from List<Object> to List<?> .
|
Execute an HQL query, binding a number of values to "?" parameters
in the query string. |
List<?> findByNamedQuery(String, Object[])
|
Change in return type from List<Object> to List<?> .
|
Execute a named query binding a number of values to "?" parameters
in the query string. |
List<?> findByNamedQueryAndValueBean(String, Object)
|
Change in return type from List<Object> to List<?> .
|
Execute a named query, binding the properties of the given bean to
":" named parameters in the query string. |
List<?> findByValueBean(String, Object)
|
Change in return type from List<Object> to List<?> .
|
Execute an HQL query, binding the properties of the given bean to
named parameters in the query string. |
Iterator<?> iterate(String, Object[])
|
Change in return type from Iterator<Object> to Iterator<?> .
|
Execute a query for persistent instances, binding a number of
values to "?" parameters in the query string. |
List<?> findByCriteria(DetachedCriteria )
|
Change in return type from List<Object> to List<?> .
|
Execute a query based on a given Hibernate criteria object. |
List<?> findByCriteria(DetachedCriteria, int, int)
|
Change in return type from List<Object> to List<?> .
|
Execute a query based on the given Hibernate criteria object. |
List<?> findByNamedParam(String, String, Object)
|
Change in return type from List<Object> to List<?> .
|
Execute an HQL query, binding one value to a ":" named parameter
in the query string. |
List<?> findByNamedParam(String, String[], Object[])
|
Change in return type from List<Object> to List<?> .
|
Execute an HQL query, binding a number of values to ":" named
parameters in the query string. |
List<?> findByNamedQueryAndNamedParam(String, String, Object)
|
Change in return type from List<Object> to List<?> .
|
Execute a named query, binding one value to a ":" named parameter
in the query string. |
List<?> findByNamedQueryAndNamedParam(String, String[], Object[])
|
Change in return type from List<Object> to List<?> .
|
Execute a named query, binding a number of values to ":" named
parameters in the query string. |