I am trying to use properties from a .properties file, but it doesn\'t seem to work.
.properties
Here is my code:
@Service(\"ServiceFTP\") @Transact
My solution was to add a space between the $ and the {.
For example:
@Value("${project.ftp.adresse}")
becomes
@Value("$ {project.ftp.adresse}")