By nature the normal java properties files API does NOT allow you to reuse variables in other declarations. Example:
DB_HOST=localhost
DB_CONNECTIONSTRING=jdbc:mysql://${DB_HOST}:3306/fluentapi?useSSL=false&useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC&useLegacyDatetimeCode=true
This is extremely useful to create compose variables especially for reuse. However, you will need a new jar file to process these replacements. This can be used using apache commons or just a post-processor in cfml which can go over each key value and process them for replacements.
By nature the normal java properties files API does NOT allow you to reuse variables in other declarations. Example:
This is extremely useful to create compose variables especially for reuse. However, you will need a new jar file to process these replacements. This can be used using apache commons or just a post-processor in cfml which can go over each key value and process them for replacements.