Monday, April 30, 2018
Friday, April 27, 2018
Windows: java.net.BindException: Address already in use: bind
Issue Details:
Caused by: java.net.BindException: Address already in use: bind
at sun.nio.ch.Net.bind0(Native Method)
at sun.nio.ch.Net.bind(Net.java:433)
at sun.nio.ch.Net.bind(Net.java:425)
at sun.nio.ch.ServerSocketChannelImpl.bind(ServerSocketChannelImpl.java:223)
at sun.nio.ch.ServerSocketAdaptor.bind(ServerSocketAdaptor.java:74)
at org.apache.tomcat.util.net.NioEndpoint.bind(NioEndpoint.java:210)
at org.apache.tomcat.util.net.AbstractEndpoint.start(AbstractEndpoint.java:980)
at org.apache.coyote.AbstractProtocol.start(AbstractProtocol.java:573)
at org.apache.catalina.connector.Connector.startInternal(Connector.java:993)
... 17 common frames omitted
27-04-2018 23:31:20 [o.a.c.h.Http11NioProtocol:179] log : Pausing ProtocolHandler ["http-nio-3000"]
27-04-2018 23:31:20 [o.a.c.c.StandardService:179] log : Stopping service Tomcat
27-04-2018 23:31:20 [o.a.c.u.LifecycleBase:179] log : The stop() method was called on component [StandardServer[-1]] after stop() had already been called. The second call will be ignored.
27-04-2018 23:31:20 [o.a.c.h.Http11NioProtocol:179] log : Stopping ProtocolHandler ["http-nio-3000"]
27-04-2018 23:31:20 [o.a.c.h.Http11NioProtocol:179] log : Destroying ProtocolHandler ["http-nio-3000"]
27-04-2018 23:31:20 [o.s.b.a.l.AutoConfigurationReportLoggingInitializer:101] logAutoConfigurationReport :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
27-04-2018 23:31:20 [o.s.b.d.LoggingFailureAnalysisReporter:42] report :
***************************
APPLICATION FAILED TO START
***************************
Description:
The Tomcat connector configured to listen on port 3000 failed to start. The port may already be in use or the connector may be misconfigured.
Fixation:
First, find out which PID is using the port 3000. Then kill the process id.C:\Users\drakula>netstat -ano | find "3000" TCP 0.0.0.0:3000 0.0.0.0:0 LISTENING 8464 TCP [::]:3000 [::]:0 LISTENING 8464 C:\Users\drakula>TASKKILL /PID 8464 /F SUCCESS: The process with PID 8464 has been terminated. C:\Users\drakula>
Wednesday, April 25, 2018
Best Tutorial: Many-many relationship with extra columns in JPA
- https://huongdanjava.com/many-many-relationship-extra-columns-jpa.html
- http://www.javamakeuse.com/2015/01/hibernate-many-to-many-mapping-with.html
- https://www.thoughts-on-java.org/many-relationships-additional-properties/
- https://en.wikibooks.org/wiki/Java_Persistence/ManyToMany
- https://giannigar.wordpress.com/2009/09/04/mapping-a-many-to-many-join-table-with-extra-column-using-jpa/
- https://stackoverflow.com/questions/5127129/mapping-many-to-many-association-table-with-extra-columns
- https://vladmihalcea.com/the-best-way-to-map-a-many-to-many-association-with-extra-columns-when-using-jpa-and-hibernate/
Friday, April 20, 2018
Tuesday, April 3, 2018
Sunday, April 1, 2018
Subscribe to:
Posts (Atom)