Java 类org.springframework.data.jpa.repository.query.Procedure 实例源码

项目:response-management-service    文件:ExportReportRepository.java   
@Modifying
@Transactional
@Procedure(name = "createReport")
boolean createReport();
项目:spring-data-examples    文件:UserRepository.java   
/**
 * Explicitly mapped to named stored procedure {@code User.plus1IO} in the {@link EntityManager}
 * 
 * @see User
 */
@Procedure(name = "User.plus1")
Integer plus1BackedByOtherNamedStoredProcedure(Integer arg);
项目:spring-data-examples    文件:UserRepository.java   
/**
 * Directly map the method to the stored procedure in the database (to avoid the annotation madness on your domain
 * classes).
 */
@Procedure
Integer plus1inout(Integer arg);
项目:spring-boot    文件:UserRepository.java   
/**
 * Explicitly mapped to a procedure with name "plus1inout" in database.
 *
 * @see DATAJPA-455
 */
@Procedure("plus1inout")
Integer explicitlyNamedPlus1inout(Integer arg);
项目:spring-boot    文件:UserRepository.java   
/**
 * Implicitly mapped to a procedure with name "plus1inout" in database via alias.
 *
 * @see DATAJPA-455
 */
@Procedure(procedureName = "plus1inout")
Integer plus1inout(Integer arg);
项目:spring-boot    文件:UserRepository.java   
/**
 * Explicitly mapped to named stored procedure "User.plus1IO" in {@link EntityManager}.
 *
 * @see DATAJPA-455
 */
@Procedure(name = "User.plus1IO")
Integer entityAnnotatedCustomNamedProcedurePlus1IO(@Param("arg") Integer arg);
项目:spring-boot    文件:UserRepository.java   
/**
 * Implicitly mapped to named stored procedure "User.plus1" in {@link EntityManager}.
 *
 * @see DATAJPA-455
 */
@Procedure
Integer plus1(@Param("arg") Integer arg);
项目:response-management-service    文件:ActionCaseRepository.java   
/**
 * trigger creation of actions from the population of the action.case and action.actionjobplan tables
 * @param actionplanjobid the id of the action plan job
 * @return true if successful
 */
@Transactional(propagation = Propagation.REQUIRED, readOnly = false)
@Procedure(name = "createactions")
boolean createActions(@Param("p_actionplanjobid") Integer actionplanjobid);