Health Check - Camel Spring Boot

2017-01-26 Thread Launcelot
Wondering what the UP status on the /health end point in a camel spring boot application indicates, Ran the example in camel\examples\camel-example-spring-boot , looked at the health check end point and it showed {"status":"UP","camel":{"status":"UP","version":"2.18.1","contextStatus":"Started"},"d

sql component using spring-boot datasource

2016-12-19 Thread Launcelot
This could be a rookie mistake, if so apologies in advance My router code : @SpringBootApplication public class MySpringBootRouter extends RouteBuilder { @Autowired DataSource dataSource; public DataSource getDataSource() { return dataSource; }

Re: Usage of properties in datasource definition - Please help

2016-02-21 Thread Launcelot
Thanks to both of you Grzegorz as well as Claus! This problem was solved and I got jasypt to work as well. To help people who might come along and read this post because they have the same problem am providing some sample code .. attached to this post are my pom file, camel config and db.propert

Usage of properties in datasource definition - Please help

2016-02-19 Thread Launcelot
I have a property file defined as follows http://camel.apache.org/schema/spring";> db.properties has a property in it which contains db.pass=valuesnipped I have a datasource definition as under