Я переношу проект в Kotlin, и это:
public static Properties provideProperties(String propertiesFileName) {
Properties properties = new Properties();
InputStream inputStream = null;
try {
inputStream = ObjectFactory.class.getClassLoader().getResourceAsStream(propertiesFileName);
properties.load(inputStream);
return properties;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (inputStream != null) {
try {
inputStream.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return null;
}
теперь:
fun provideProperties(propertiesFileName: String): Properties? {
return Properties().apply {
ObjectFactory::class.java.classLoader.getResourceAsStream(propertiesFileName).use { stream ->
load(stream)
}
}
}
Очень мило, Котлин!: P
Возникает вопрос: этот метод ищет файл .properties
внутри src/main/resources
. Использование:
ObjectFactory::class.java.classLoader...
он работает, но используя:
this.javaClass.classLoader...
classLoader
null
...
(обратите внимание, что адрес памяти также отличается)
Почему?
Спасибо