Hello,
I'm using Spring framework and I don't know how to do this simple thing: I want to provide a String to a bean, with the string being the result of the concatenation of multiple part, some fixed and other variables
For example it could be something like:
"myReportFile_20102101_1832.txt"
- the first part is a fixed part
- the second part is a timestamp with current date time
- the last part is another fixed part
How to achieve that using the simplest way ?
Thanks a lot.