1
resposta

[Bug] Falha localhost:8081

Após subir a aplicação retorna o erro abaixo:

Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.*

Thu Apr 06 11:29:46 BRT 2023
There was an unexpected error (type=Not Found, status=404).

application.properties

server.port=8081
spring.application.name=server
eureka.client.register-with-eureka=false
eureka.client.fetch-registry=false
eureka.client.serviceUrl.defaultZone=http://localhost:8081/eureka

ServerApplication.java

package br.com.alurafood.server;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@SpringBootApplication
@EnableEurekaServer
public class ServerApplication {

    public static void main(String[] args) {
        SpringApplication.run(ServerApplication.class, args);
    }

}

Estou utilizando a IDE Intellij. Já alterei a porta, mas nenhum sucesso.

1 resposta

Oi Wilson! Tudo bem?

Sua aplicação está rodando, mas o endereço que você digita não está sendo encontrado, por isso o erro 404. Você está usando o endereço localhost:8081/eureka? Vi um outro tópico em que a instrutora dizia que o correto é usar apenas localhost:8081: https://cursos.alura.com.br/forum/topico-whitelabel-error-page-239097. Caso seja o mesmo caso, tenta trocar e ver se funciona!

Espero ter ajudado, abraços e bons estudos! :)

Caso este post tenha lhe ajudado, por favor, marcar como solucionado ✓. Bons Estudos!