Код: Выделить всё
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("../classes/testProps.properties");
Properties props = new Properties();
props.load(inputStream);
System.out.println(props.get("test"));
Для контекста мне нужно поместите файл свойств в папку WEB-INF/classes, а файл jar в WEB-INF/lib.
Подробнее здесь: https://stackoverflow.com/questions/754 ... ed-under-t