327장. SQL 저장 프로시저 구성 요소
Camel 버전 2.17에서 사용 가능
sql-stored: 구성 요소를 사용하면 JDBC 저장된 프로시저 쿼리를 사용하여 데이터베이스를 작업할 수 있습니다. 이 구성 요소는 SQL 구성 요소의 확장이지만 저장 프로시저를 호출하는 데 특수합니다.This component is an extension to the SQL Component but specialized for calling stored procedures.
이 구성 요소는 실제 SQL 처리를 위해 백그라운드에서 Spring -jdbc
를 사용합니다.
Maven 사용자는 이 구성 요소에 대해 pom.xml
에 다음 종속성을 추가해야 합니다.
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-sql</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
327.1. URI 형식
SQL 구성 요소는 다음 끝점 URI 표기법을 사용합니다.
sql-stored:template[?options]
여기서 template은 저장 프로시저 템플릿이며, 여기서 저장 프로시저의 이름과 IN, INOUT 및 OUT 인수를 선언합니다.
다음과 같은 파일 시스템 또는 클래스 경로의 외부 파일에서 템플릿을 참조할 수도 있습니다.
sql-stored:classpath:sql/myprocedure.sql[?options]
where sql/myprocedure.sql is a plain text file in the classpath with the template, as show:
SUBNUMBERS( INTEGER ${headers.num1}, INTEGER ${headers.num2}, INOUT INTEGER ${headers.num3} out1, OUT INTEGER out2 )
URI에 쿼리 옵션을 추가할 수 있습니다. ?option=value&option=value&…