Hi everybody It's been a while since I post my last topic
Here's my problem…I've been using the custom-repository.properties in every project I created to specify where to find the dir.root, which db.driver to use, etc. My question is : where can I find the list of all these variables ? because so far I managed to found them searching on the forum (such as the ooo.exe, ooo.user, img.exe…) but where the hell are they listed
If you can help me that would be a so greaaaaaaaat help…Because I'm tired of spending 2 or 3 days looking for a variable (true story) that I could have find in 2mn…
Alfresco is configured via spring and Alfresco's spring configuration files are stored within the WEB-INF/classes/alfresco folder. The properties files are used to reduce the need for the average user to wade through xml files.
For example if you look in bootstrap-context.xml you will see <property name="dirRoot"> <value>${dir.root}</value> </property>
Which is where your property file is used to inject the value of dir.root.
OK so what you are telling me is that there are no static "variable's list" for Alfresco : we have to find the one that interest us in the configuration files ? and also we can create our own, etc. -> ?