Pages

Thursday, 21 March 2013

Reading portal-ext.properties file in VM

portal-ext.properties file can be read from VM also. Its very useful in live scenario:

portal-ext.properties
1
2
my.key1=theValue
my.key2=value1,value2,value3,value4

VM
1
2
3
4
5
6
#set($ mykey1 = $propsUtil.get("my.key1") )
#set($ mykey2 = $propsUtil.get("my.key2") )
#set($mykey2Arr = $mykey2.split(","))
#foreach ($mykey IN $mykey2Arr)
   $mykey
#end

Hope this will help you out someday.

No comments:

Post a Comment