Skip to content

Create a new process in Java, exit the current process

In my code, I want to restart the program. For this i have used the following code in Windows: For Linux Builds I used So now, the implementation for Windows works just fine. It begins a new instance and exits the old. But the Linux implementation is kinda a bit odd. I added System.exit(0); thinking that it w…

Passing List in @RequestHeader Restapi

I want to pass list of string in my controller via Request Header @RequestHeader(“list”) final List<String> listOfString. Can this be used. How can I pass list of string in header via Postman? list={item1,item2,item3}. This is not working while I want to test via Postman. Is there any way? A…