Tagged Questions

5
votes
1answer
1k views

Spring .properties file - Get element as an Array

I'm loading properties attributes from a .properties file using Spring as follows: file: elements.properties base.module.elementToSearch=1 base.module.elementToSearch=2 base.module.elementToSearch=3 ...
3
votes
1answer
683 views

Spring - Replacing the bean property values with new Property File values

I have a property file and using Spring property place holder, I set values to the Spring beans. Now, this property file may be modified during the run time. Is there a way to refresh the properties ...
2
votes
4answers
966 views

Simplest way to use “BeanUtils alike” replace

Is there any libraries that would allow me to use the same known notation as we use in BeanUtils for extracting POJO parameters, but for easily replacing placeholders in a string? I know it would be ...
1
vote
3answers
4k views

Dynamic Placeholder substitution in properties in java

I wanted to substitute the placeholder dynamically in properties in a java application. Like WelcomeMessage=Welcome Mr. {firstName} {lastName} !!! These firstName and LastName variable needs to ...
0
votes
3answers
674 views

Make Spring replace placeholders in different file type (other than Spring's configs)

is there a way to make spring (v.3.0) parse placeholders in file that are not .properties? I know I can write my own PropertyPlaceholderConfigurer but I was looking for a "cleaner" way to do it. ...