Spring Boot invalidDataAccessApiUsageException - OUT/INOUT 参数不可用

Posted

技术标签:

【中文标题】Spring Boot invalidDataAccessApiUsageException - OUT/INOUT 参数不可用【英文标题】:Spring Boot invalidDataAccessApiUsageException - OUT/INOUT Parameter is not available 【发布时间】:2021-03-19 15:40:47 【问题描述】:

我在 Spring Boot 中使用了一个 Oracle 存储过程,它有一些 IN/OUT 参数。

当我得到一个 out 参数时,它会抛出一个异常 invalidDataAccessApiUsageException: OUT/INOUT Parameter is not available: ent_mensaje.

这是存储过程定义

create or replace PROCEDURE     fon_anula_programacion (
   ent_numero_operacion   IN       NUMBER,
   ent_numero_fisico      IN       VARCHAR2,
   ent_mensaje            IN OUT   VARCHAR2,
   ent_canal_origen       IN OUT   VARCHAR2,
   ent_senal_proceso      IN OUT   VARCHAR2,
   ent_senal_commit       IN OUT   VARCHAR2,
   ent_sw_pos             IN OUT   NUMBER
) IS
...

带有@NamedStoredProcedureQuery 的实体类

@Getter
@Setter
@Entity
@NoArgsConstructor
@NamedStoredProcedureQueries(
        @NamedStoredProcedureQuery(name = "Valores.AnularAdicionFondoSif",
                procedureName = "FON.FON_ANULA_PROGRAMACION",
                resultClasses = DTOAnularAdicionSIF.class,
                parameters = 
                        @StoredProcedureParameter(name = "ent_numero_operacion", type = BigDecimal.class, mode = ParameterMode.IN),
                        @StoredProcedureParameter(name = "ent_numero_fisico", type = String.class, mode = ParameterMode.IN),
                        @StoredProcedureParameter(name = "ent_mensaje", type = String.class, mode = ParameterMode.INOUT),
                        @StoredProcedureParameter(name = "ent_canal_origen", type = String.class, mode = ParameterMode.INOUT),
                        @StoredProcedureParameter(name = "ent_senal_proceso", type = String.class, mode = ParameterMode.INOUT),
                        @StoredProcedureParameter(name = "ent_senal_commit", type = String.class, mode = ParameterMode.INOUT),
                        @StoredProcedureParameter(name = "ent_sw_pos", type = BigDecimal.class, mode = ParameterMode.INOUT)
                
        )
)
public class DTOAnularAdicionSIF 
    @Id
    @Column
    private BigDecimal Numero_operacion;
    @Column
    private String Numero_fisico;
    @Column
    private String Mensaje;
    @Column
    private String Canal_origen;
    @Column
    private String Senal_proceso;
    @Column
    private String Senal_commit;
    @Column
    private BigDecimal Sw_pos;

我的参数类

public class AnularAdicionSIFParameters 
    @Params(name = "ent_numero_operacion",direction = Params.Direction.IN)
    private BigDecimal Numero_operacion;

    @Params(name = "ent_numero_fisico",direction = Params.Direction.IN)
    private String Numero_fisico;

    @Params(name = "ent_mensaje",direction = Params.Direction.INOUT)
    private String Mensaje;

    @Params(name = "ent_canal_origen",direction = Params.Direction.INOUT)
    private String Canal_origen;

    @Params(name = "ent_senal_proceso",direction = Params.Direction.INOUT)
    private String Senal_proceso;

    @Params(name = "ent_senal_commit",direction = Params.Direction.INOUT)
    private String Senal_commit;

    @Params(name = "ent_sw_pos",direction = Params.Direction.INOUT)
    private BigDecimal Sw_pos;

发送参数

AnularAdicionSIFParameters anularAdicionSIFParameters = AnularAdicionSIFParameters.builder()
.Numero_operacion(BigDecimal.valueOf(Double.parseDouble(comprobante)))
                .Numero_fisico(numerofisico)
                .Senal_commit("S")
                .Canal_origen(canal)
                .Senal_proceso("S")
                .Mensaje("")
                .Sw_pos(BigDecimal.valueOf(0))
                .build();
String response = repository.AnularAdicionReturnMensaje(anularAdicionSIFParameters);

存储库方法

public String AnularAdicionReturnMensaje(AnularAdicionSIFParameters parameters) throws IllegalAccessException
        String name_procedure = "Valores.AnularAdicionFondoSif";
//super is the class who set the parameters and execute the procedure
        ResponseProcedure<AnularAdicionSIF> respuestaSif = super.runNamedStoredProcedure(name_procedure,parameters);
        return respuestaSif.getOutput().get("ent_mensaje").toString();
    

设置参数并执行程序

public ResponseProcedure<E> runNamedStoredProcedure(String nameProcedure, Object params) throws IllegalAccessException 
        StoredProcedureQuery storedProcedureQuery = em.createNamedStoredProcedureQuery(nameProcedure);
        Map<String, Object> output = new HashMap<>();

        Class<?> objectClass = params.getClass();

        Field[] extend = objectClass.getSuperclass().getDeclaredFields();
        Field[] base = objectClass.getDeclaredFields();
        Field[] allFields = new Field[extend.length + base.length];
        Arrays.setAll(allFields, i ->
                (i < extend.length ? extend[i] : base[i - extend.length]));


        for (Field field: allFields) 
            field.setAccessible(true);
            if (field.isAnnotationPresent(Params.class)) 
                Params param = field.getAnnotation(Params.class);
                if(param.direction() == Params.Direction.IN || param.direction() == Params.Direction.INOUT)
                    storedProcedureQuery.setParameter(param.name(), (field.get(params) != null ) ? field.get(params) : "");
            
        

        storedProcedureQuery.execute();

        Arrays.stream(allFields).filter(field -> (field.getAnnotation(Params.class).direction() == Params.Direction.OUT || field.getAnnotation(Params.class).direction() == Params.Direction.INOUT))
                .forEach(ff ->
                    Params param = ff.getAnnotation(Params.class);
                    output.put(param.name(), storedProcedureQuery.getOutputParameterValue(param.name()));
                );

        return new ResponseProcedure<E>(toList(storedProcedureQuery.getResultList()), output);
    

还有错误:OUT/INOUT parameter not available: ent_mensaje; nested exception is java.lang.IllegalArgumentException: OUT/INOUT parameter not available: ent_mensaje

【问题讨论】:

您找到解决方案了吗? 【参考方案1】:

我通过将@Transactional 添加到执行对存储库的调用的方法来修复。喜欢@Parawata cmets in this answer

【讨论】:

以上是关于Spring Boot invalidDataAccessApiUsageException - OUT/INOUT 参数不可用的主要内容,如果未能解决你的问题,请参考以下文章

为啥 Spring Boot 应用程序 pom 同时需要 spring-boot-starter-parent 和 spring-boot-starter-web?

《02.Spring Boot连载:Spring Boot实战.Spring Boot核心原理剖析》

spring-boot-quartz, 依赖spring-boot-parent

spring-boot系列:初试spring-boot

Spring Boot:Spring Boot启动原理分析

Spring Boot:Spring Boot启动原理分析