Posts by Rafael Manzoni • 158 points
7 posts
-
0
votes2
answers203
viewsA: Swagger2 with Springboot. How to separate documentation from source code?
Swagger has a verbiage structure for writing contracts. Strategies that aim to focus on designing the API (First API) view create a repository to carry out API design, usually writing in YAML format…
-
0
votes2
answers1434
viewsA: CEP and CPF validation API in Java
Some important ZIP links and Apis: http://correiosapi.apphb.com/ How to find an address by zip code in the Post Office?…
-
1
votes2
answers1178
viewsA: How to define Enumeration in JSON
JSON is a message format like XML. XSD (Schema Definition) is a format used to shape and validate an XML structure. For JSON there are some structure recognition/ validation patterns, for example:…
-
0
votes1
answer867
viewsA: Configure Spring Boot with Swagger to generate documentation from a json
There are two ways you can work in this situation. API First: You have the contract designed first and want to create a project scaffolding for Spring Boot. For this use Swagger codegen. Develop…
-
0
votes1
answer33
viewsA: Questions about API
Yes, JWT is an approach that is on the rise. The point is that JWT is an Open specification of encoding/decoding of JSON tokens. By itself it does not define how you will use. The cool thing about…
-
2
votes1
answer81
viewsA: GIT lab service for versioning
The git server you are trying to connect to has an auto-signed certificate. To disable this validation run: git config --global http.sslVerify false
-
1
votes1
answer651
viewsA: How to implement an authentication service in a SOA project
How you are working with Angular using the SPA standard (Single Page Application) your HTTP chat system directly with the server. Today the most widely used protocol for this scenario is Oauth 2.0.…