Код: Выделить всё
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class Controller {
@GetMapping("/preliminate")
public void OpentextWebService(){
try {
OTService.threadOne();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@GetMapping("/final")
public void OpentextWebService2(){
OTService.threadTwo();
}
}
Подробнее здесь: https://stackoverflow.com/questions/681 ... -same-time