Solucionado (ver solução)
Solucionado
(ver solução)
2
respostas

problemas ao subir aplicação em Spring Boot

Por favor, estou com problemas para subir uma aplicação em spring boot porque quando ele vai subir o tomcat ocorre erro porque a porta 8080 está em uso. Com isso tentei matar o processo que esta utilizando a porta 8080 no meu PC, windows, e recebo msg de erro:

C:\Windows\system32>taskkill /PID 1344 /F
ERRO: o processo com PID 1344 não pôde ser finalizado.
Razão: Acesso negado.


Alguém conseguiria me ajudar?

Segue abaixo erro no console:



***************************
APPLICATION FAILED TO START
***************************

Description:

The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.

Action:

Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.

2018-03-15 16:11:23.915  INFO 6984 --- [           main] ConfigServletWebServerApplicationContext : Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6328d34a: startup date [Thu Mar 15 16:11:18 BRT 2018]; root of context hierarchy
2018-03-15 16:11:23.917  INFO 6984 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Unregistering JMX-e
2 respostas
solução!

Acho bem viavel voce fazer a troca da porta que o spring vai usar para subir, essa config fica no application.properties

server.port = 8090

Legal, obrigado Matheus!