- Видео 39
- Просмотров 3 205
Arvind Rai (concretepage.com)
Добавлен 7 мар 2013
Learn programming languages and its advance concepts. Here we publish videos on front-end and back-end technologies such as Java, Spring, Angular, Hibernate and Android.
To read the articles, visit our website.
www.concretepage.com
To read the articles, visit our website.
www.concretepage.com
Spring Bean Attributes in XML Configuration
Read here: www.concretepage.com/spring/spring-bean-attributes-xml-configuration
In this Video, I will discuss Spring bean attributes overview in XML configuration.
In this Video, I will discuss Spring bean attributes overview in XML configuration.
Просмотров: 23
Видео
Beginning with Spring Cloud Gateway
Просмотров 2719 часов назад
Read here: www.concretepage.com/spring-boot/spring-cloud-gateway Spring cloud gateway routes to APIs and handles security, monitoring and resiliency. It is built on Spring WebMVC or Spring WebFlux. Spring cloud gateway can match routes on any request attribute. It provides predicate and filters to match routes. We can integrate circuit breaker and DiscoveryClient to Spring cloud gateway.
Spring Cloud - Load Balancer Application
Просмотров 141День назад
Read here: www.concretepage.com/spring-boot/spring-cloud-load-balancer In this video I will discuss and create load balancer application using Spring Cloud. In load balancing application, user requests are distributed among multiple service instances. For the demo, here I will create a Spring Boot MVC application and will run this application on different port. This will be part-one of our demo...
What is Open-closed principle (OCP) in Java?
Просмотров 36Месяц назад
Read here : www.concretepage.com/questions/847
GraphQL API Server with Node.js for CRUD Operation
Просмотров 52Месяц назад
Read here: www.concretepage.com/nodejs/graphql-api-server-nodejs GraphQL is a query language for APIs that allows us ask for exactly what we need. We just have to describe our data then ask for what we want and we get predictable results. GraphQL can be used with any database or storage or our existing code and data.
Angular Route Guard - Part 5 : resolve guard using ResolveFn
Просмотров 76Месяц назад
Read here: www.concretepage.com/angular-2/angular-resolve-guard-example To create resolve guard, Angular provides 1. resolve property in Route interface that accepts a map of ResolveFn instances. 2. ResolveFn function signature to define route guard. 3. mapToResolve function to shorten the resolve guard code.
Angular Route Guard - Part 4 : canDeactivate guard using CanDeactivateFn
Просмотров 72Месяц назад
Read here: www.concretepage.com/angular-2/angular-candeactivate-guard-example The canDeactivate is a property of Route interface that is assigned with an array of CanDeactivateFn instances. CanDeactivateFn is a signature of function that performs as canDeactivate route guard. We create an injectable service to perform canDeactivate route guard.
Angular Route Guard - Part 3 : canMatch guard using CanMatchFn
Просмотров 34Месяц назад
Read here: www.concretepage.com/angular/angular-canmatch-guard canMatch, a property of Route interface, is an array of CanMatchFn that determines if the current user matches the route. If canMatch route guard is not used, any route can match. CanMatchFn is a function signature to create canMatch guard. If CanMatchFn returns true, navigation continues. If CanMatchFn returns false, the Route is s...
Angular Route Guard - Part 2 : canActivateChild guard using CanActivateChildFn
Просмотров 48Месяц назад
Read here: www.concretepage.com/angular/angular-canactivatechildfn Angular Route provides canActivateChild property that is assigned with array of CanActivateChildFn functions. CanActivateChildFn : Function signature used to create canActivateChild route guard. mapToCanActivateChild : Function that creates array of CanActivateChildFn instances using injectable services.
Angular Route Guard - Part 1 : canActivate guard using CanActivateFn
Просмотров 67Месяц назад
Read here: www.concretepage.com/angular/angular-canactivatefn Angular CanActivateFn provides functional approach to write code for canActivate route guard. To perform canActivate route guard, we need to know following points. 1. CanActivateFn : Signature of a function to perform canActivate route guard. 2. canActivate : A property of Route interface that accepts an array of CanActivateFn instan...
Global Error Handling in Angular
Просмотров 43Месяц назад
Read here: www.concretepage.com/angular/angular-error-interceptor Using HTTP interceptor we can create a global error handler for HTTP operations. In HTTP error handling, we use RxJS operators, some of them are as below. retry : Resubscribe to the source stream for the given number of time, when there is error. catchError : Catches error to handle and returns new observable or throws error. thr...
Angular Logging Http Interceptor
Просмотров 70Месяц назад
Read here: www.concretepage.com/angular/angular-logging-http-interceptor In this video, I will create Angular logging Http Interceptor.
Angular Functional HTTP Interceptors
Просмотров 69Месяц назад
Read here: www.concretepage.com/angular/angular-interceptors-httpinterceptorfn HttpInterceptorFn is a middleware function used to create interceptors. HttpClient calls these interceptors when HTTP requests are made. These interceptors can modify outgoing request or any response that comes back. They can also block, redirect the request and response as well as can change their semantics.
Angular Standalone - provideRouter()
Просмотров 37Месяц назад
Read here: www.concretepage.com/angular/angular-providerouter Angular provideRouter() sets provider for routing. In this method, we pass an array of routes and extra router features that need to be enabled for routing.
Angular Standalone : provideHttpClient()
Просмотров 124Месяц назад
Read here: www.concretepage.com/angular/angular-providehttpclient In Angular standalone application, we need to provide HttpClient for dependency injection using provideHttpClient(). It provides HttpClient with default configurations. To add other configurations, we can pass feature functions to provideHttpClient().
Using NgOptimizedImage directive in Angular
Просмотров 64Месяц назад
Using NgOptimizedImage directive in Angular
Unable to access data from src/assets directory
Просмотров 19Месяц назад
Unable to access data from src/assets directory
Using Default Exports in Angular Standalone Lazy Loading
Просмотров 412 месяца назад
Using Default Exports in Angular Standalone Lazy Loading
TypeScript - Unable to resolve signature of class decorator when called as an expression
Просмотров 352 месяца назад
TypeScript - Unable to resolve signature of class decorator when called as an expression
JdbcClient vs JdbcTemplate vs NamedParameterJdbcTemplate in Spring Boot
Просмотров 632 месяца назад
JdbcClient vs JdbcTemplate vs NamedParameterJdbcTemplate in Spring Boot
Using JdbcClient.sql() in Spring Boot
Просмотров 742 месяца назад
Using JdbcClient.sql() in Spring Boot
Configure MySQL with Spring Boot Application
Просмотров 802 месяца назад
Configure MySQL with Spring Boot Application
MySQL Error Code: 1046. No database selected
Просмотров 1512 месяца назад
MySQL Error Code: 1046. No database selected
Share Angular Signal between Components using Service
Просмотров 1263 месяца назад
Share Angular Signal between Components using Service
thnx, that realy help😃