Well... I tried a different approach which worked, then decided to revert my
code back to
${in.body} regex
${properties:version1.regex}
I created a camel.properties file and added the following entries:
version1.regex='^1.00(.)+'
version1.value=1.00
The I added a wiretap
**${properties:version1.regex}
and the output was as expected: '^1.00(.)+'
For some reason, stil
I set up the property configurer using jasypt:
I have the following simple expression in my Spring route:
${in.body} regex '^1.00(.)+'
I placed a regex pattern entry in the property file as follows:
regex.pattern='^1.00(.)+'
Tried a couple of way
I made some modifications to my code.
(1) I added alternativeBodyHeader=CamelMailAlternativeBody to:
and then
(2) I changed:
to
I'm new to camel ... Trying to send a multipart/alternative (text/plain and
text/html) using Spring, Camel, and Velocity.
In my route I have the following snippet: