How to Read mule-app.properties File Inside Your Mule Flow [Snippet]
This quick snippet will let you be able to see the mule-app.properties file in your Mule Flow.
Join the DZone community and get the full member experience.
Join For FreeHello everyone,
Here I will show you how to see the mule-app.properties file inside your Mule flow.
You just need to add these lines of code in your Java component class, which will enable you to read the property file and load it into a Properties object:
I hope this helps!
public class PropertySampleReader {
Properties prop = new Properties();
InputStream input = null;
public String propertyRead() throws IOException {
@SuppressWarnings("unused")
Properties properties = System.getProperties();
System.out.println(properties);
System.out.println(properties.get("company"));
input = getClass().getResourceAsStream("/mule-app.properties");
prop.load(input);
System.out.println(prop);
return "XYZ";
}
}
Topics:
mule esb,
mulesoft,
muleesb,
mule school,
mulestudio
Opinions expressed by DZone contributors are their own.
Comments