If I do
<value>classpath:site/properties/default/placeholder.properties</value>
What does the classpath: actually mean? Does that mean my properties file needs to be in a place that won’t be easily updateable? I would like a .properties file to be in a location where a webmaster can change settings on the fly if needed. Can you still do that with a .properties file located in the classpath:?
classpath:points to files located in theclassesdirectory. In other words, yourplaceholder.propertiesis located in<classes-dir>/site/properties/defaultdirectory. I don’t think the webmaster is allowed to change the settings on the fly once you deployed the project, I mean, you could change it, but it probably won’t take effect at all.