Я новичок в интеграции с верблюдом, и мне нужно создать свой собственный компонент верблюда и использовать его в приложении Spring Boot.
Я пытался сгенерировать свой компонент, используя maven archetype .
Итак, команда такая:
mvn архетип: генерировать -DarchetypeGroupId = org.apache.camel.archetypes
-DarchetypeArtifactId = верблюд-архетип-компонент -DarchetypeVersion = 2.12.1 -DgroupId = my.tcp.camel.component -DartifactId = my-tcp -Dname = MyTCP -Dscheme = my-tcp
Сгенерированный код выглядит так
public class MyTCPComponent extends DefaultComponent {
protected Endpoint createEndpoint(String uri, String remaining, Map<String, Object> parameters) throws Exception {
Endpoint endpoint = new MyTCPEndpoint(uri, this);
setProperties(endpoint, parameters);
return endpoint;
}
}
public class MyTCPEndpoint extends DefaultEndpoint {
public MyTCPEndpoint() {}
public MyTCPEndpoint(String uri, PtTCPComponent component) {
super(uri, component);
}
public MyTCPEndpoint(String endpointUri) {
super(endpointUri);
}
public Producer createProducer() throws Exception {
return new MyTCPProducer(this);
}
public Consumer createConsumer(Processor processor) throws Exception {
return new MyTCPConsumer(this, processor);
}
public boolean isSingleton() {
return true;
}
}
public class MyTCPConsumer extends ScheduledPollConsumer {
private final MyTCPEndpoint endpoint;
public MyTCPConsumer(MyTCPEndpoint endpoint, Processor processor) {
super(endpoint, processor);
this.endpoint = endpoint;
}
@Override
protected int poll() throws Exception {
Exchange exchange = endpoint.createExchange();
// create a message body
Date now = new Date();
exchange.getIn().setBody("Hello World! The time is " + now);
try {
// send message to next processor in the route
getProcessor().process(exchange);
return 1; // number of messages polled
} finally {
// log exception if an exception occurred and was not handled
if (exchange.getException() != null) {
getExceptionHandler().handleException("Error processing exchange", exchange, exchange.getException());
}
}
}
}
public class MyTCPProducer extends DefaultProducer {
private static final Logger LOG = LoggerFactory.getLogger(MyTCPProducer.class);
private MyTCPEndpoint endpoint;
public MyTCPProducer(MyTCPEndpoint endpoint) {
super(endpoint);
this.endpoint = endpoint;
}
public void process(Exchange exchange) throws Exception {
System.out.println(exchange.getIn().getBody());
}
}
и файл манифеста, созданный в ресурсах.
Я обнаружил, что вы можете инициализировать springBoot с помощью FatJar
@SpringBootApplication
public class MySpringBootRouter extends FatJarRouter {
@Override
public void configure() {
from("timer://trigger").
transform().simple("ref:myBean").
to("log:out", "mock:test");
}
@Bean
String myBean() {
return "I'm Spring bean!";
}
}
Пусть кто-нибудь интегрирует свой пользовательский компонент в приложение SpringBoot.
Я бы предпочел, чтобы Springboot работал с компонентом автоматического обнаружения верблюдов.
Спасибо.