Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What to learn to do Java web services?

The last time I did Java web development was in 2004 with Java Servlets and JSP. I never really got anywhere with EJBs. I recall my experience in developing web services\dynamic web sites with these to be slow (in terms of development time) and painful (in terms of easy deployment).

What do most businesses use to develop Java based websites these days? Do you use AXIS or some other framework to do web services? Do you use JSP or some other technology for the front end?

like image 546
Peter Smith Avatar asked Feb 25 '23 13:02

Peter Smith


1 Answers

The current standards are to use a JAX-WS (for SOAP web services) and JAX-RS (for RESTful web services).

These are standards that have multiple implementations. JAX-WS has Metro, CXF, etc. JAX-RS has Jersey, RESTEasy, etc.

like image 195
Bozho Avatar answered Mar 03 '23 20:03

Bozho