As REST-ful data services become more widespread, it is becoming clear that they have to change to suit new consumer needs. This evolution is often disruptive to consumers, but it doesn't have to be. This session, a follow up to 'REST-ful API Design', discusses various strategies for evolving a REST-ful API and how the strategies can be implemented using Spring.
Source: https://www.youtube.com/watch?v=fSFh9UCBp5s&list=UU7yfnfvEUlXUIfm8rGLwZdA
Showing posts with label RESTful webservice. Show all posts
Showing posts with label RESTful webservice. Show all posts
Wednesday, July 23, 2014
REST-ful API Evolution
Java, J2EE, Struts, Hibernate, Web Services, JSF
how the REST strategies can be implemented using Spring,
REST-ful API Evolution,
Restful API design,
RESTful webservice,
Spring REST
Sunday, January 19, 2014
Spring RESTBucks - A hypermedia-driven REST webservice
Spring MVC forms a solid foundation to implement REST based web-services in Java. However, in real-world projects developers still face challenges when it comes to advanced questions of REST. How to really leverage hypermedia? How to model more complex business functionality with REST. The talk introduces the Spring RESTBucks sample implementation of a hypermedia-driven REST web service and explains how it is using hypermedia elements to implement business processes and how Spring technologies (Spring Data REST, Spring Data JPA and Spring HATEOAS) help developers building the system.
Source : http://www.youtube.com/watch?v=Y3rP4VT7qWM
Source : http://www.youtube.com/watch?v=Y3rP4VT7qWM
Java, J2EE, Struts, Hibernate, Web Services, JSF
RESTful webservice,
Spring RESTBucks - A hypermedia-driven REST webservice,
Spring restful services,
Spring vedieo tutorials
Monday, August 12, 2013
Web Services Hands On
Java, J2EE, Struts, Hibernate, Web Services, JSF
how to write webservice,
implementing webservices,
java web,
Java webservices,
RESTful webservice,
Web Services Hands On,
webservices tutorials,
webservices vedio tutorials
Code First Web Service
Java, J2EE, Struts, Hibernate, Web Services, JSF
code first webservice,
how to write webservice,
implementing webservices,
Java webservices,
RESTful webservice,
webservices in java,
webservices tutorials,
webservices vedio tutorials
Monday, January 16, 2012
Introduction to RESTful Web Services
REST is a “Representational state transfer” and it is firstly introduced by Roy Fielding (Fielding is one of the principal authors of the HTTP specification and a co-founder of the Apache HTTP Server project) in his 2000 doctoral dissertation.
REST-style services (i.e., RESTful services) adhere to a set of constraints and architectural principles that include the following:
- RESTful services are stateless. As Fielding writes in Section 5.1.3 of his thesis, “each request from client to server must contain all the information necessary to understand the request, and cannot take advantage of any stored context on the server.”
- RESTful services have a uniform interface. This constraint is usually taken to mean that the only allowed operations are the HTTP operations: GET, POST, PUT, and DELETE.
- REST-based architectures are built from resources (pieces of information) that are uniquely identified by URIs. For example, in a RESTful purchasing system, each purchase order has a unique URI.
- REST components manipulate resources by exchanging representations of the resources. For example, a purchase order resource can be represented by an XML document. Within a RESTful purchasing system, a purchase order might be updated by posting an XML document containing the changed purchase order to its URI
Java, J2EE, Struts, Hibernate, Web Services, JSF
Java webservices,
RESTful webservice,
Web service defination,
What is web service
Subscribe to:
Posts (Atom)