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
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;
}
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
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