- Ajv is the fastest JSON Schema validator for node.js and browser.
- Ajv compiles schemas into functions - ajv.compile(<your schema>)
- ajv.validate(<your json data>) returns the errors.
Wednesday, August 30, 2017
AJV - the JSON Schema validator
Friday, August 25, 2017
24 Chambers of Shaolin
- Create a NodeJs application with express
- Create a NodeJS application with routes, MongoDB
- Create a NodeJS application with RestAPI (creating and consuming)
- Create a NodeJS + Spring Boot application with RestAPI
- JavaScript advanced topics like Promises, Array methods, callbacks, call, apply, bind, curry
- JavaScript ES6 - Fundamentals
- JavaScript TypeScript - Fundamentals
- ReactJS fundamentals
- ReactJs application
- ReactJS application with Routes
- ReactJS, Redux application
- ReactJS + Spring Boot application with Rest API
- Testing - unit, integration
- Debugging
- Deployment of NodeJS application
- Jenkins pipelines
- git commands
- Unix Shell scripts
- SaaS CSS basics
- Responsive web design
- GIT
- MAC
- Maven, ant, Gradle
- Gulp, Grunt, web pack
Thursday, August 24, 2017
More on Spring Boot Annotations
This web site explains some of the key Spring Boot annotations that I came across while working on a Spring Boot application.
http://zetcode.com/articles/springbootbean/
A sample of explanation: Spring
You see, it's that simple and cool :)
http://zetcode.com/articles/springbootbean/
A sample of explanation: Spring
@Bean
annotation tells that a method produces a bean to be managed by the Spring container. It is a method-level annotation. During Java configuration (@Configuration
), the method is executed and its return value is registered as a bean within a BeanFactory
.You see, it's that simple and cool :)
Wednesday, August 16, 2017
Spring Framework Annotations
Came across this web site where the basic annotations are explained in a simple way:
"Spring uses dependency injection to configure and to bring your application together. It means that you just declare the components of your system and how they interact. Then Spring wires it all together at runtime. Here are the most important annotations you should know of."
Go to https://zeroturnaround.com/rebellabs/spring-framework-annotations-cheat-sheet/
"Spring uses dependency injection to configure and to bring your application together. It means that you just declare the components of your system and how they interact. Then Spring wires it all together at runtime. Here are the most important annotations you should know of."
Go to https://zeroturnaround.com/rebellabs/spring-framework-annotations-cheat-sheet/
Subscribe to:
Posts (Atom)