RMI vs REST Service

2020-06-03 01:16发布

问题:

We are developing a service for our portal / web client developed using JSF . My advice was to expose the service as REST but another team member said to go with RMI implementation since its easier to deal in java object from development and testing point of view.

My argument was development and testing efforts with be pretty much the same but we will get all the goodness of REST web services.

FYI : We already have REST setup so there is no extra cost in framework support. This services are exposed for our smartphone client who uses REST api.

At the end our Manager decided to go with RMI way but I still think REST would be smarter way.

What would be your choice REST or RMI?

Note : Nothing against my team member or Manager just trying to learn here.

回答1:

If there are firewalls between your client and server, it is likely that RMI traffic might be blocked. HTTP traffic is open on most firewalls and REST should have no problem getting through.



回答2:

The biggest argument against RMI and for REST/SOAP etc is that the client does not have to be Java.

If your front-end could change down the road from JSF to ASP, then you'll be in some trouble.

Other than that, RMI is the way to go. An even better way to go is EJB ( which is a layer on top of RMI ) with additional advantages -- lots of vendors already implement the EJB spec, you get the advantages of object pooling, transaction management etc.



回答3:

Is the client in Java, use RMI. But that is to simple thought. As it is only a point to point protocol.

REST as a paradigm is interesting if you have e.g. many reads and like to use HTTP technologies for caching etc. The next thing is you likely can easy implement "paging cursors" so you send data as a small page and add info how to retrieve the next page.

Your question basically is formulated as if it is a technology question. Which is the wrong approach. You should not bother about technology but about system architecture. The whole software system, its abilities, its performance, its scaling, its configuration and its maintenance is completely different depending on your usage of RMI or REST.



标签: java rest rmi