| | |
| | | |
| | | import com.genersoft.iot.vmp.VManageBootstrap; |
| | | import com.genersoft.iot.vmp.utils.SpringBeanFactory; |
| | | import com.genersoft.iot.vmp.vmanager.gbStream.bean.GbStreamParam; |
| | | import gov.nist.javax.sip.SipStackImpl; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.context.ConfigurableApplicationContext; |
| | | import org.springframework.web.bind.annotation.*; |
| | |
| | | import javax.sip.SipProvider; |
| | | import java.util.Iterator; |
| | | |
| | | @SuppressWarnings("rawtypes") |
| | | @Api(tags = "服务控制") |
| | | @CrossOrigin |
| | | @RestController |
| | | @RequestMapping("/api/server") |
| | |
| | | private ConfigurableApplicationContext context; |
| | | |
| | | |
| | | @RequestMapping(value = "/restart") |
| | | @ApiOperation("重启服务") |
| | | @GetMapping(value = "/restart") |
| | | @ResponseBody |
| | | public Object restart(){ |
| | | Thread restartThread = new Thread(new Runnable() { |