| | |
| | | import org.dromara.common.satoken.utils.LoginHelper; |
| | | import org.dromara.common.sse.core.SseEmitterManager; |
| | | import org.dromara.common.sse.dto.SseMessageDto; |
| | | import org.springframework.beans.factory.DisposableBean; |
| | | import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; |
| | | import org.springframework.http.MediaType; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | |
| | | @RestController |
| | | @ConditionalOnProperty(value = "sse.enabled", havingValue = "true") |
| | | @RequiredArgsConstructor |
| | | public class SseController { |
| | | public class SseController implements DisposableBean { |
| | | |
| | | private final SseEmitterManager sseEmitterManager; |
| | | |
| | |
| | | return R.ok(); |
| | | } |
| | | |
| | | @Override |
| | | public void destroy() throws Exception { |
| | | // 销毁时不需要做什么 此方法避免无用操作报错 |
| | | } |
| | | |
| | | } |