06-08-2018 06:40 AM
I'am trying to read the data from the properties file present in my local system into Form Stencil of Alfresco Process Service.Is it possible to read the data .Please reply back.
Thanks in Advance.
06-19-2018 11:07 AM
Can you describe more what do you want to do maybe giving an example?
08-18-2020 01:19 AM
I had same scenario but I have used java to read custom property file.
You need to place property at classpath.
@Configuration @PropertySource("classpath:/META-INF/foo/foo.properties") @PropertySource(value = "classpath:foo.properties", ignoreResourceNotFound = true) @PropertySource(value = "file:foo.properties", ignoreResourceNotFound = true) @Service("MyService") public class MyService { @Value("${propertyname}") private String name; }
Explore our Alfresco products with the links below. Use labels to filter content by product module.