# spring-boot-helloWorld **Repository Path**: caesarhao/spring-boot-helloWorld ## Basic Information - **Project Name**: spring-boot-helloWorld - **Description**: spring-boot-helloWorld - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-10-10 - **Last Updated**: 2026-03-10 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # spring-boot-helloWorld Spring Boot Example. ### path ``` /kill → 杀掉普通接口,使普通路径请求阻塞超时 /revive → 恢复普通接口,阻塞的请求被唤醒 /status → 返回服务状态 JSON(alive、timestamp) /health → 健康检查,始终可访问 ``` 启动提示 服务启动时会在控制台打印如下信息: ``` ============================================= Spring Boot HelloWorld Service Control endpoints: POST /kill -> kill all endpoints (block requests) POST /revive -> revive all endpoints GET /status -> show alive status in JSON GET /health -> upstream health check Example curl commands: curl -X POST http://localhost:8888/kill curl -X POST http://localhost:8888/revive curl http://localhost:8888/status ============================================= ```