val port= Play.application().configuration().getInt("port")
But I have created one more file in conf directory. conf/properties.conf and stored the values there.
But i'm not able to find how to read from a custom property file.
Please any one help me
val file = "properties.conf"val inputStream = play.api.Play.resourceAsStream(file).getOrElse {throw new NullPointerException(s"Could not find resource '$file'!")}...