Refer to the below exhibit.
A Mule applicationconfigures a property placeholder file named config.yaml to set some property placeholders for an HTTP connector.
What is the valid properties placeholder file to set these values?
1.http:2.host = "localhost"3.port = "8081"
1.http:2.basepath: "api"3.host : "localhost"4.port : "8081"
1.http.host = localhost2.http.port = 8081
1.{2.http:3.basePath: "api",4.port: "8081",5.host: " localhost"
Correct answer is as below as it follows the correct syntax.
http:
basepath:"api"
host:"localhost"
port:"8081"
Mule Doc Reference : https://docs.mulesoft.com/mule-runtime/4.3/mule-app-properties-to-configure
Submit