Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

238
Visualizações
How to show loop results on html page in real time Java Spring

I would like to show loop results on html page in real time. I use Java , Spring, thymeleaf, javascript. The loop is below. Instead of system out print I would like it to be displayed on html page.

@GetMapping("/progress")
    public String testProgress() {
        for (int i = 1; i <= 100; i++) {
            if(i==20){
                System.out.println("20 %");
            }else if (i==40){
                System.out.println("40 %");
            }else if (i==60){
                System.out.println("60 %");
            }else if (i==80){
                System.out.println("80 %");
            }else if (i==100){
                System.out.println("100 %");
            }
        }
        return null;
    }
about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

You can do this using Server Sent Events and htmx.

First, create a @GetMapping method to expose the SSE channel:

  private SseEmitter sseEmitter;

 @GetMapping("/progress-events")
    public SseEmitter progressEvents() {
        sseEmitter = new SseEmitter(Long.MAX_VALUE);
       
        sseEmitter.onCompletion(() -> LOGGER.info("SseEmitter is completed"));
        sseEmitter.onTimeout(() -> LOGGER.info("SseEmitter is timed out"));
        sseEmitter.onError((ex) -> LOGGER.info("SseEmitter got error:", ex));

        return sseEmitter;
    }

Next, have your method that start the process you want to monitor. This can be any method. In this example, I used a POST:

@PostMapping
    public String generatePdf() {
        for(int progress = 0; progress <=100;progress++) {
          int progress = 0
          String html = """
                    <div id="progress-container" class="progress-container"> \
                        <div class="progress-bar" style="width:%s%%"></div> \
                    </div>
                    """.formatted(value);

          sseEmitter.send(html);
        }

        return "index";
    }

In your Thymeleaf template:

<body>
<h1>Demo</h1>
<div hx-sse="connect:/progress-events">
    <button hx-post="/" hx-swap="none">Show progress</button>
    <div style="margin-bottom: 2rem;"></div>
    <div id="progress-wrapper" hx-sse="swap:message">
    </div>
</div>
<script type="text/javascript" th:src="@{/webjars/htmx.org/dist/htmx.min.js}"></script>
</body>
  • hx-sse (on the outer div): Tells htmx on what SSE channel to connect
  • hx-post: Tells htmx to do a POST when the button is clicked
  • hx-swap: Tells htmx that the respone of the POST should not be used to replace the innerHTML of the button
  • hx-sse (on the inner div): Tells htmx to swap the innerHTML of progress-wrapper with the HTML that is sent via the Server Sent Events

One tricky thing is that the HTML cannot contain newlines, that is why that text block has backslashes at the end of each line.

You can see a full example at https://github.com/wimdeblauwe/blog-example-code/tree/feature/htmx-sse/htmx-sse. It is slightly more complicated in the sense that it uses Spring Security and keeps track of SseEmitters per user so that the progress is sent to all open browser tabs where the user is logged on.

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda