JAVA - Raspberry-pi - Application as a service who start then stop immediately

若如初见. 提交于 2019-12-02 08:44:04

Problem solved,

I post what i've found if some one have the same ;)

My app run a Thread, waiting for keyboards entries to run live tests and shutdown app when this loop is break with 'q',

while( scanner.hasNext() ){
  ...
}

"This method may block while waiting for input to scan" say the JavaDoc, ... may block...

In a case of a service, or when you put the app in background, "has next" don't block, so my app thinks 'q' was send and shutdown.

I've just added a starting parameter to use app asService or not, which disable or not this waiting loop..!

That's all folk!

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!