Programming Blog
Latest Articles:
Popular Articles:
Angular 6 CRUD Example316K
This turorial is about building Angular 6 application step by step.We will be building a sample login application with CRUD operations post-login with sample REST APIs.We will be also integrating HttpClientModule and RouterModule.
Angular 5 JWT Authentication(Full Stack)152K
The tutorial is about creating a full stack app using angular5 JWT authentication with spring boot security in the server as token provider and HTTPInterceptor implementation. Access of REST API is given to HTTP request having auth token in the header.
Angular 5 Material Design Application88K
This tutorial is about creating a sample application using angular 5 material design.To develop this app we will be using different angular 5 material components such as form controls, navigation menu, layout and buttons.
Spring Boot + Angular 5 +Spring Data + Rest Example(CRUD)465K
This tutorial is about Spring Boot, Angular 5 and spring data integration with CRUD example.We will be using spring boot 1.5 to expose REST APIs and angular5 with routing to build our client using angular CLI.It also provides mysql database integration for CRUD operation.
Spring Boot Security Jwt Authentication176K
Implement JWT authentication with Spring Boot and maven.Using OncePerRequestFilter class to define custom authentication mechanism to URLs as well as for methods.
Spring Boot Security OAuth2 Example298K
Implementation of Spring Boot Security OAuth2 with CRUD example to secure REST APIs.Implementation of AuthorizationServer,ResourceServer with mysql db and spring data. BCryptPasswordEncoder is used for password encoding.
Spring Boot Multiple Database Configuration155K
This tutorial is about spring boot multiple database configurations using properties file.The example here defines multiple datasource configurations and spring data JPA uses corresponding entitymanager to query multiple databases.
Spring Boot Hibernate 5 with Mysql Example203K
This tutorial explains integration of spring boot 1.5 and hibernate 5 + mysql with REST examples. It discusses about creating hibernate session factory using spring-boot-starter-data-jpa artifact.
Spring Boot Actuator Rest Endpoints Example58K
This post shows examples of Spring Boot Actuator REST endpoints with with sample code base.It also talks about customizing endpoints, securing endpoints and also creating custom endpoints using AbstractEndpoint
Spring Boot Security REST Basic Authentication303K
Secure Spring REST API with basic authentication using spring Boot security.The REST Apis are exposed using spring controller and the application is tested using postman.