-
-
按照文档的例子写法,SseEmitter没有给输出任何数据
listener.setOnComplate(msg -> {
// 回答完成,可以做一些事情
log.info("======ChatGPT=======:{}", msg);
});
这段代码可以看到有回答的,就是SseEmitter没有给前端返回数据,是为什么…
-
public SseEmitter chat(@RequestParam("message") String msg, @RequestHeader Map headers) throws IOException {
SseEmitter sseEmitter = new SseEmitter(0L);
改成上面代码就好了
-
那么这次的连接如何关闭呢,复用会导致数据混乱问题?
-
2023-03-15T08:52:50.417+08:00 ERROR 25819 --- [io-10001-exec-1] o.a.coyote.http11.Http11NioProtocol : Failed to complete processing of a request
2594
2595 java.lang.OutOfMemoryError: Java heap …
-
## 📋 설명
> SSE 다중 연결을 처리 할 수 있도록 구현
## 📌 작업 리스트
- [x] SseEmitter 저장 자료구조 변경
- [x] 메시지 전송 로직 변경
@tommysgit @AnTaeWook @muyongKim
-
If I get the stream result, how do I return it to my own front-end
-
In GitLab by @tommysgit on Feb 28, 2023, 09:54
_Merges refactor/#45 -> dev_
## 📋 구현 내용
> 코드리뷰 피드백 반영, SSE 다중 연결 기능 구현
### 피드백 반영
- 트랜잭션 어노테이션을 달지 않아도 기본적으로 호출하는 함수에게 전파가 되기 때문에 어노테이션 제거
### SSE …
-
_Merges refactor/#21 -> dev_
## 📋 구현 내용
> SSE 연결 기능 테스트 후 일부 코드 수정
- SSE TimeOut 환경변수로 분리
- SseEmitter send IOException 처리 방식 변경
## 🔍 테스트 케이스
- SseEmitter send IOException 처리 방식 변경에 따라 해당 테스트 코드를 …
-
:exclamation:**이슈내용**
---
생성자에게 Group Otp를 발급하는 api
:star:**상세 내용**
---
- 생성자에게 Group Otp를 발급하는 api
- Session에서 group 정보를 받아 group id로 해당 그룹을 찾은 후, otp를 발급한다.
- response: otp
:white_check_…