Find the process ID (PID) for the port (e.g.: 8080)
On Windows:
netstat -ao | find "8080"
Other Platforms other than windows :
lsof -i:8080
Kill the process ID you found (e.g.: 20712)
On Windows:
Taskkill /PID 20712 /F
Other Platforms other than windows :
kill -9 20712 or kill 20712
Related Contents:
- What is username and password when starting Spring Boot with Tomcat?
- How to debug Spring Boot application with Eclipse?
- Max limit of MultipartFile in Spring Boot
- 8080 port already taken issue when trying to redeploy project from Spring Tool Suite IDE
- How to configure embedded Tomcat integrated with Spring to listen requests to IP address, besides localhost?
- Terminating mvn spring-boot:run doesn’t stop tomcat
- SpringApplication.run main method
- How to run Spring Boot web application in Eclipse itself?
- Hot swapping in Spring Boot
- Eclipse debugger always blocks on ThreadPoolExecutor without any obvious exception, why?
- Apache Tomcat Not Showing in Eclipse Server Runtime Environments [duplicate]
- Read file from resources folder in Spring Boot
- Does application.yml support environment variables?
- How to determine programmatically the current active profile using Spring boot [duplicate]
- Spring Boot default H2 jdbc connection (and H2 console)
- How to customise the Jackson JSON mapper implicitly used by Spring Boot?
- How to disable ‘X-Frame-Options’ response header in Spring Security?
- Spring boot @ResponseBody doesn’t serialize entity id
- After Spring Boot 2.0 migration: jdbcUrl is required with driverClassName
- Spring Security 5 : There is no PasswordEncoder mapped for the id “null”
- Spring ApplicationContext – Resource leak: ‘context’ is never closed
- Table ‘DBNAME.hibernate_sequence’ doesn’t exist
- Spring Boot Program cannot find main class
- SpringBoot – BeanDefinitionOverrideException: Invalid bean definition
- Spring’s @RequestParam with Enum
- Maven is not using Java 11: error message “Fatal error compiling: invalid target release: 11”
- Setting the default active profile in Spring-boot
- Unknown version of Tomcat was specified in Eclipse
- How to disable flyway in a particular Spring profile?
- Change database schema used by Spring Boot
- how to make auto reload with Spring-boot on IDEA Intellij
- Spring Boot access static resources missing scr/main/resources
- What is the spring-boot-configuration-processor ? Why do people exclude libraries from it? Why is it invisible in dependency tree?
- Spring Boot – Handle to Hibernate SessionFactory
- Spring Boot – nesting ConfigurationProperties
- reason: no instance(s) of type variable(s) T exist so that void conforms to using mockito
- How to set hibernate.format_sql in spring-boot?
- how to debug spring application with gradle
- How can I set up a letsencrypt SSL certificate and use it in a Spring Boot application?
- Why Spring Boot Application class needs to have @Configuration annotation?
- How to add multiple application.properties files in spring-boot?
- Is there a way to avoid undeployment memory leaks in Tomcat?
- Mono class in Java: what is, and when to use?
- Spring-Data JPA CrudRepository returns Iterable, is it OK to cast this to List?
- Adding 3rd party jars to WEB-INF/lib automatically using Eclipse/Tomcat
- Spring Boot, Spring Data JPA with multiple DataSources
- Spring boot ddl auto generator
- How can you make a created_at column generate the creation date-time automatically like an ID automatically gets created?
- Best way of handling entities inheritance in Spring Data JPA
- How to log the active configuration in a Spring Boot application?