Search Results for: REST

SOAP vs RESTful Microservices

In this article, we will discuss some points that provide the difference between SOAP versus RESTful microservices. Before this article, we have discussed the Software architecture patterns and design, and also we have discussed how …

Restrictions in Hibernate

In this tutorial, you will see the use of Restrictions class in java. It is used to restrict the retrieval of data from database. Syntax: Criteria criteria = session.createCriteria(Model.class); criteria.add(Restrictions.eq(propertyName, propertyValue));   Criteria restrictions query …