6.13. XML Rest-DSL 추가
기본적으로 Camel Rest-DSL XML 경로를 클래스 경로의 camel-rest
디렉토리에 배치할 수 있으며, camel-spring-boot
는 자동으로 감지되고 포함됩니다. 다음과 같이 구성 옵션을 사용하여 디렉터리 이름을 구성하거나 이 기능을 비활성화할 수 있습니다.
// turn off camel.springboot.xmlRests = false // scan in the com/foo/routes classpath camel.springboot.xmlRests = classpath:com/foo/rests/*.xml
참고
Rest-DSL XML 파일은 Camel XML rests이어야 하며 다음과 같은 CamelContext
가 아니어야 합니다.
<rests xmlns="http://camel.apache.org/schema/spring"> <rest> <post uri="/persons"> <to uri="direct:postPersons"/> </post> <get uri="/persons"> <to uri="direct:getPersons"/> </get> <get uri="/persons/{personId}"> <to uri="direct:getPersionId"/> </get> <put uri="/persons/{personId}"> <to uri="direct:putPersionId"/> </put> <delete uri="/persons/{personId}"> <to uri="direct:deletePersionId"/> </delete> </rest> </rests>