简体   繁体   中英

Java Server and client/ RMI or Socket?

I'm developing a Desktop LAN base java server and client application

where a Client must login and also to pass some data to server. assuming i have 10 clients that inserting record simultaneously to server.

which is the best approach in this kind of situation, should I use RMI for login and record insertion? or Sockets?

if sockets please provide a key idea for me to start with.

key points to consider -Multithreading -able to send back data on client

If you want to connect your server via internet (and/or firewalls) it is probably a hassle to do this with plain RMI. In the past I have used Java Simon for such tasks which is very easy to implement. However if you plan to support other clients than Java clients, then you should have a look at Apache Thrift or Google Protocoll Buffers

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM