3
respostas

Localhost não abre no browser

Rodei o teste do servidor (usei a porta 8090), no console até aparece a frase "Servidor rodando", mas ao abrir no chrome, não aparece a página.

Log do console:

ago 06, 2019 10:55:15 PM org.glassfish.jersey.server.ApplicationHandler initialize
INFORMAÇÕES: Initiating Jersey application, version Jersey: 2.5 2013-12-18 14:27:29...
ago 06, 2019 10:55:15 PM org.glassfish.grizzly.http.server.NetworkListener start
INFORMAÇÕES: Started listener bound to [localhost:8090]
ago 06, 2019 10:55:15 PM org.glassfish.grizzly.http.server.HttpServer start
INFORMAÇÕES: [HttpServer] Started.

Servidor rodando

No browser o erro:

Não foi possível encontrar a página deste localhost Nenhuma página da web foi encontrada para o endereço da Web:http://localhost:8090/ Pesquise localhost 8090 no Google HTTP ERROR 404

Meu código:

package br.com.alura.loja;

import java.io.IOException;
import java.net.URI;

import org.glassfish.grizzly.http.server.HttpServer;
import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import org.glassfish.jersey.server.ResourceConfig;


public class Servidor {

    public static void main(String[] args) throws IOException {

        ResourceConfig config = new ResourceConfig().packages("br.com.alura.loja");
        URI uri = URI.create("http://localhost:8090");
        HttpServer server = GrizzlyHttpServerFactory.createHttpServer(uri, config);
        System.out.println("Servidor rodando");
        System.in.read();
        server.stop();

    }
}
3 respostas

Você tentou acessar http://localhost:8080/carrinhos?

Olá Otávio, achei o problema, era o cache do browser. Ao abrir uma uma janela anônima funcionou. Limpei o cache e funcionou na janela padrão. Obrigado.

Perfeito Anderson, fico feliz que tenha conseguido resolver =D

Abraço!