I´m implementing a simple "Hello World" in Spring Boot. I´m following the tutorial SpringBoot HelloWorld
When I run the class SpringbootHelloworldApplication.java as "Run as Java Aplication" I got the error:
*************************** 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.
I did double click in the server, and it has this configuration:
I´m not using the port 8080, where should I change the default port?
The server.xml file has:
<Connector port="8085" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />

server.port=<someotherportnumber>in application.properties file - pvpkiran