kohlschutter / junixsocket

Unix Domain Sockets in Java 7 and newer (AF_UNIX), AF_TIPC, AF_VSOCK, and more
Apache License 2.0
438 stars 114 forks source link

how to use this library to replace the server implementation in springboot based application #100

Closed NobleYd closed 2 years ago

NobleYd commented 2 years ago

I have an application which is developed based on springboot, could I replace the server communication with unix socket?

kohlschuetter commented 2 years ago

Basically any local communication between processes can be done via UNIX sockets. Since junixsocket extends the Socket API, give it a try. I believe in you.