-
In my app, since I added this simple controller handler:
```
@GetMapping("/sse")
SseEmitter registerClient(){
SseEmitter emitter = new SseEmitter();
// emitter is then stored…
-
Bug report
_edit: removed reactor-core:3.0.7.RELEASE dependency since it's not important for this issue_
Using Spring Boot 1.5.7-RELEASE and Spring MVC and having just one application and controller…
-
Hello!
how to handle exception by client close connection with SseEmitter(returnValue is SseEmitter for controller)?It's get an exception (Error:Could not find acceptable representation) when client …
-
Hi,
I've tried to make use of the endpoints in spring boot 2.0 and changed my properties file according to your doc.
`management.endpoints.web.exposure.include=*
management.endpoint.info.enable…
-
Hello,
I'm having the following error when running the SBA application:
```java
2018-06-09 22:24:30.882 ERROR 1813 --- [nio-9999-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.ser…
-
**SBA server pom.xml:**
`
org.springframework.boot
spring-boot-starter-parent
2.0.3.RELEASE
UTF-8
UTF-8
1.8
de.codecentric
spring-boot-admi…
-
When using `SseEmitter` and `Gson` is configured as global message converter, the response stream is closed after every update.
[Demo Repository to reproduce the bug](https://github.com/hydroid7/sp…
-
Whenever Tomcat async request times out, an error appears in the log and unexpected JSON message is emitted in response. For example, it happens with embedded Tomcat that arrives with Boot, where asyn…
-
### Problem
When using SseEmitter and closing tabs in the browser, the `onComplete` and `onError` callbacks are not called for every subscription.
Code to subscribe:
```
SseEmitter emitt…
Oduig updated
6 years ago
-
Example project: https://github.com/ajlane/spring-boot-sse-example
Steps to reproduce:
- Start the application and navigate to http://localhost:8080.
- Wait for the client connection to time out …