Scalatra : Access file path from a deployed application

358 Views Asked by At

I need to access file path on the server in Scalatra application. Without war file the following worked for me where file was stored in /src/main/resources/data location.

this.getClass.getResource("/data").getPath

However the same doesn't work with deployed app. Any ideas how should I get the context.

Thanks,

1

There are 1 best solutions below

0
On

This question is almost same as How to get the path of a running JAR file?
But, in Scala case, you can use:

new File(classOf[YourClassName].getProtectionDomain.getCodeSource.getLocation.toURI.getPath)

For example, to find web.xml is: File path to resource in our war/WEB-INF folder?

val context: ServletContext = getServletContext()
val fullPath = context.getRealPath("/WEB-INF/web.xml")