RE: EXTERNAL: Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Cox, Jeremy
The package structure was the problem. I created a package "routes" underneath where the application is, and put my route there. Thank you very much! Sincerely,   Jeremy Cox Software Engineer Universal Gateway at Progeny Systems   Urgent contact: Text 859.322.3214 Emailjeremy@progeny.net

Re: EXTERNAL: Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Mark Nuttall
Did you try something simple like a direct route? If that does work and the quartz one doesn't work then it is configured wrong. If neither do, try ensuring the Component is being created. Put a log statement in the configure method. I don't see the package names in your code but if "beans" ar

RE: EXTERNAL: Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Cox, Jeremy
--- DemoApplication.java --- import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoAp

RE: EXTERNAL: Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Mikael Andersson Wigander
Can you share the class file where you have your main() ? /M ‐‐‐ Original Message ‐‐‐ On Thursday, January 7th, 2021 at 16:01, Cox, Jeremy wrote: > Thank you all for the tips. These are good improvements, but the route still > doesn't start. > > Adding to application.properties > > c

RE: EXTERNAL: Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Cox, Jeremy
Thank you all for the tips. These are good improvements, but the route still doesn't start. Adding to application.properties camel.springboot.main-run-controller = true prevents the program from shutting down, but the route still does not start. I also added quartz dependency. I verified t

Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Claus Ibsen
Hi Since you use the quartz component, you need to add the camel starter component for it https://camel.apache.org/components/latest/quartz-component.html#_spring_boot_auto_configuration On Thu, Jan 7, 2021 at 3:09 PM Cox, Jeremy wrote: > > I am trying to port a project from Spring/Camel 2 to S

Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Mikael Andersson Wigander
Tried adding quartz as an dependency org.apache.camel.springboot camel-quartz-starter x.x.x /M ‐‐‐ Original Message ‐‐‐ On Thursday, January 7th, 2021 at 15:09, Cox, Jeremy wrote: > I am trying to port a project from Spring/Camel 2 to Spring Boot / Camel 3. > The rout

Re: Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Jared Whiklo
Hey Jeremy, I just did something similar and while I'm not done I've learned some things. I would guess you need to add the application property defined here to keep your routes running. https://camel.apache.org/camel-spring-boot/latest/index.html#_making_sure_camel_context_is_running_in_standal

Can't get routes to Start in SpringBoot / Camel 3.5.0

2021-01-07 Thread Cox, Jeremy
I am trying to port a project from Spring/Camel 2 to Spring Boot / Camel 3. The routes won't start. I've tried everything I can think of/ find on google search. 1. I went to start.spring.io and generated a project template. I commented out the dependencies I am not using yet: jpa, hibernate