我的Spring Boot应用程序中有以下错误: There was an unexpected error (type=Internal Server Error, status=500).inStreamparameter is null
java.lang.NullPointerException: <em
在这个应用程序中,我正在运行一个远程服务,其中我将启动一个单独的线程来运行TCP连接……在应用程序退出时,我必须关闭输入流,为其提供线程中断并更改布尔值(stopBroadcastRequested)。当这在线程块中得到满足时,我关闭了inputstream,但它实际上并没有关闭……如果我在正常线程执行期间在线程内手动提供instream.close,输入流将按预期关闭。extends Service {
OutputStream outStream = null;
I