Avatar of U4enik
U4enik

asked on 

Path to config file inside of a war archive

Hello,

My Java application is packed into a war archive. A class reads properties from a file. I need to know path to this file, whatever I tried gives file not found exception.

here is a structure of archive

WEB-INF
    classes
--------config.properties
--------com
---------------xxx
----------------------yyy
---------------------------MyClass.java

I tried "config.properties", classes/config.properties, WEB-INF/classes/config.properties, /WEB-INF/classes/config.properties  all fails, plz help!
           
Java

Avatar of undefined
Last Comment
U4enik

8/22/2022 - Mon