我有一个简单的存储过程,用于测试SpringDataJPA存储过程功能。createorreplaceprocedureplus1inout(arginint,res1outint,res2outint)isBEGINres1:=arg+1;res2:=res1+1;END;我的代码是:@RepositorypublicinterfaceAdjudConverDateSPRepositoryextendsJpaRepository{@Procedure(name="plus1")Object[]plus1(@Param("arg")Integerarg);}@Entity@NamedS