A Backend for Frontend (BFF) architecture can be used to create
backends for client-facing mobile or web apps. BFF’s can help support an
application with multiple clients while at the same time moving the
system into a less-coupled state than a monolith system. This code
pattern helps teams iterate features faster and have control over the
backends for mobile apps without affecting the experience...
Showing posts with label Web Services. Show all posts
Showing posts with label Web Services. Show all posts
Saturday, March 30, 2019
Saturday, March 30, 2019
Create a backend for frontend application architecture
Tuesday, February 21, 2017
Tuesday, February 21, 2017
Consuming a RESTful Web Service with Spring for Android
This Getting Started guide walks you through the process of building an application that uses Spring for Android's RestTemplate to consume a Spring MVC-based RESTful web service.
Compile và chạy ứng dụng rest server
You will build an Android client that consumes a Spring-based RESTful web service. Specifically, the client will consume the service created in Building...
Thursday, April 14, 2016
Thursday, April 14, 2016
Java API for JSON Processing: An Introduction to JSON
1. JSON Introduction
JSON (JavaScript Object Notation) is a
lightweight, text-based, language-independent data exchange format that
is easy for humans and machines to read and write. JSON is limited to text and numeric values. Binary values are not supported. JSON was originally derived as a subset of the JavaScript Specification (ECME-Script) and it is therefore directly supported...
Saturday, January 22, 2011
Saturday, January 22, 2011
Getting Started with RESTful Web Services
REpresentational State Transfer (REST) is an architectural style for distributed hypermedia systems, such as the World Wide Web. Central to the RESTful architecture is the concept of resources identified by universal resource identifiers (URIs). These resources can be manipulated using a standard interface, such as HTTP, and information is exchanged using representations of these resources. In this...