Spring boot 在Spring boot应用程序中从H2 DB读取数据的驼峰路由

Spring boot 在Spring boot应用程序中从H2 DB读取数据的驼峰路由,spring-boot,apache-camel,h2,Spring Boot,Apache Camel,H2,我的spring boot应用程序正在使用route从mySQL数据库读取数据 from("sql:select * from Students?repeatCount=1").convertBodyTo(String.class) .to("file:outbox"); 现在我想创建从内存H2 DB读取的路由,但我不确定要使用哪些camel组件以及如何创建路由

我的spring boot应用程序正在使用route从mySQL数据库读取数据

from("sql:select * from Students?repeatCount=1").convertBodyTo(String.class)
       .to("file:outbox");
现在我想创建从内存H2 DB读取的路由,但我不确定要使用哪些camel组件以及如何创建路由