在我的java类中,我有一个名为static
的{{1}}方法返回getProperties()
。
在另一个java.util.Properties
方法中,我调用的方法如下:
static
Properties p = getProperties();
方法:
getProperties()
ERROR:
private static Properties getProperties(){
Properties properties = new Properties();
try{
InputStream fis = null;
fis = new FileInputStream("src/main/resources/fileName.properties"); //In DEBUG mode control comes until here and returns to Properties p = getProperties(); in the calling method every time continuously
properties.load(fis);
fis.close();
}catch(Exception e){
//......
}
return properties;
}
在调试模式下getProperties();方法在没有到达return语句的情况下被连续调用。
答案 0 :(得分:0)
我已经解决了它没有问题的代码,但我认为错误$(document).ready ->
$('.datetimepicker').datetimepicker()
,也许是造成问题的原因。
Exception in thread "main" java.lang.StackOverflowError
答案 1 :(得分:-1)