Skip to main content

Posts

Showing posts from 2017

Swagger APIs Server- Writing OpenAPI( Swagger- YAML ) Specification

Writing OpenAPI( Swagger ) Design First Specification: In previous post, I described all about the swagger in brief, What it is?, Why it is required?, How to used and implementation?  If you are new for Swagger then see my previous post Swagger APIs Server - Complete Description and Integration with JAX-RS, MAVEN and JBoss Server , I am sure that you will be get all details about Swagger with implementation. Here now I am going to give design first approach to write APIs design using YAML.

What is GitHub and How to Set-up

GitHub The “Git” in GitHub To understand GitHub, you must first have an understanding of Git. Git is an open-source version control system that was started by Linus Trovalds – the same person who created Linux. Git is similar to other version control systems –  Subversion , CVS, and Mercurial to name a few. Version control systems So, Git is a “version control system,” what’s that mean? When developers are creating something (an application, for example), they are making constant changes to the code and releasing new versions, up to and after the first official (non-beta) release. Version control systems keep these revisions straight, and store the modifications in a central repository. This allows developers to easily collaborate, as they can download a new version of the software, make changes, and upload the newest revision. Every developer can see these new changes, download them, and contribute. Similarly, people who have nothing to do with the development o...

Swagger APIs Server - Complete Description and Integration with JAX-RS, MAVEN and JBoss Server

In the world there are various languages are used to communicate, But it is impossible to learn whole languages, So anyone who go to any corner of the world and know at-least one common language like "English" then he can communicate easily.Means there is made a common international language to communicate with each other. "For millions of people to communicate, there needs to be a common vocabulary."  Today Software industries becoming vast on day by day. So if we see on perspective of development then we see that today each software industry uses APIs landscape.It is a best way to connect and share data through APIs. In software industry they develop the APIs by self or generally they use other's APIs like Google APIs, or any other industry's APIs and integrate in their project on the basis of of the requirements. So before moving forward let me little introduce about API. API(Application Program Interface) provides a communication ...