Is there an equivalent to ASP.NET WEB API in JAVA world? -
i've been .net web developer several years now, working asp.net web forms , c#, wcf etc.but developed touch enabled customer facing application. device-agnostic application designed platform capable of running html5 applications (ios, android, windows8), mobile devices (such tablets), assisted or unassisted kiosks, laptop or desktop computers.
we used asp.net webapi, asp.net mvc 4.0 framework, jquery mobile libraries, html 5, signal r development.
is possible migrate or convert complete server side code(i.e controllers methods) under java?
does apache tomcat server or (webspehere) supports verbs put, delete inaddition , post?
any thing available in java world equivalent asp.net signalr functionality?
what required softwares or libraries developing device aganostic touch enabled applications in java?
i think web api objectively wins out on other apis in below few key areas.
content negotiation, flexibility, separation of concerns
how extent spring mvc api or jersey api support above areas?
is possible migrate or convert complete server side code(i.e controllers methods) under java?
you could, it's not easy there not direct mapping apis, there similar apis use. there lots of people have done it
does apache tomcat server or (webspehere) supports verbs put, delete inaddition , post?
yes http commands can enabled/disabled in tomcat or jee compliant app servers
any thing available in java world equivalent asp.net signalr functionality?
dwr (direct web remoting), vaadin, gwt etc. sure there more.
what required softwares or libraries developing device aganostic touch enabled applications in java?
javame, android, gwt-touch etc. link might you.
java rest apis
- apache cxf, open source web service framework.
- jersey, reference implementation sun (now oracle).
- resteasy, jboss's implementation.
- apache wink, apache software foundation incubator project, server module implements jax-rs.
- apache tuscany (http://tuscany.apache.org/documentation-2x/sca-java-bindingrest.html)
hope helps.
Comments
Post a Comment