I am trying to invoke a Stored Procedure whose signature looks like the following:
CREATE OR REPLACE PROCEDURE FIND_FIRST_BOOKMARK_GT(bookmark IN NUMBER, cur OUT
Using native Query we can also call store procedure. If you are using MySQL then following will be the systex:
@Query(nativeQuery = true,value = "call getEmployeeList") List getEmployeeList();