WARN 12000 — [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : Unable to start LiveReload server
Article catalog
Cause of problem: solution:
problem
0000-00-00 00:00:55.497 WARN 12000 --- [ restartedMain] o.s.b.d.a.OptionalLiveReloadServer : Unable to start LiveReload server
reason:
When you use the springboot hot deployment plug-in devtools
, and start multiple applications at the same time, the console will report this warning;
The problem is that a port is configured in devtoolsproperties. The default is 35729
public static class Livereload {
private boolean enabled = true;
private int port = 35729;
... }
Multiple ports are in conflict, causing the hot deployment plug-in behind to not take effect.
Solution:
Add the following configuration to the application.properties file:
spring. Devtools. Livereload. Port = 35731
(specified port does not duplicate port)
Read More:
- [Solved] SpringBoot Startup Error: Description:Web server failed to start. Port 9090 was already in use.(win10)
- [Solved] SpringBoot+Dubbo Startup Error: Fail to start server(url: dubbo://192.168.0.9:20880/service
- [Solved] SpringBoot+Dubbo Startup Error: Fail to start server(url dubbo192.168.0.920880service
- [Solved] eureka Startup Error: Unable to start web … nested exception is org.springframework.boot.web.server.WebS
- [Solved] eureka Startup Error: Unable to start web … nested exception is org.springframework.boot.web.server.WebS
- [Solved] Springboot Project Startup Error: Unable to Identify bootstrap.yml Configuration
- SpringBoot Startup Error: Failed to start component [Connector[HTTP/1.1-8080]]
- [Solved] nacos Startup Error: Unable to start embedded Tomcat
- [Solved] Nacos1.3.2 Startup Error: Unable to start embedded Tomcat
- [Solved] Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerExcepti
- Springboot Integrate Swagger2 Error: Failed to start bean ‘documentationPluginsBootstrapper‘;
- Springboot controls the startup of rabbitmq through configuration files
- [Solved] Springboot integrate swagger error: Failed to start bean ‘documentationPluginsBootstrapper‘
- [Solved] Tomcat Startup Error: A child container failed during start、LifecycleException: Failed to start component
- The @value annotation of springboot adds the default value to solve the startup error caused by the non-existent key
- [Solved] Springboot Package jar and Startup Error: It was loaded from the following location
- Springboot error about swagger startup [How to Solve]
- [Solved] Web server failed to start. Port 8080 was already in use.
- [Solved] Springboot integrate swagger error: failed to start bean ‘documentationpluginsbootstrapper‘
- Springboot startup error “No bean named’org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry’ available”