(Robert_Dyball) An article that explores how developers of enterprise web applications that need to display data in grids can use Wijmo FlexGrid, a mature, fully supported data grid.
Tag: JSON / JAVA / XML
Angular – Typescript Fundamentals
(Veerendra Annigere) In order to build an application in Angular, we need to know the fundamentals of Typescript. In this article, I’m going to explain the fundamentals of Typescript and object-oriented programing principles.
What is the JVM? Introducing the Java Virtual Machine
(Matthew Tyson) The Java Virtual Machine is a program whose purpose is to execute other programs. It’s a simple idea that also stands as one of our greatest examples of coding kung fu.
Using Create-React-App and .NET Core 3.0 to Build a React Client (Global Weather) – Part 1
(Fred Song) In this article, we will build React websites that seamlessly work with ASP.NET Core 3.0 as the back-end server. By the end of the article, we will show you how to create a weather Client with Create-React-App, implementation using Form Components, styling UI with Bootstrap, and call the
#0417 – SQL Server – Select row count of local temp tables
(Nakul Vachhrajani) I was recently contacted by a fellow team member who was interested in finding out the number of records in a temporary table which was being used as part of a long-running script.
Projections with JPA and Hibernate
(Thorben Janssen) Choosing the right projection when selecting data with JPA and Hibernate is incredibly important.
Mocking Dependencies In Angular Unit Tests
(Neeraj Shende) There could be 3 different scenarios when it comes to mocking the dependencies in order to optimize the performance of unit tests cases and to reduce the development time of unit test cases.
Consistent Error Propagation and Handling in Java
(Sergiy Yevtushenko) Every application lives in the real world, and the real world is not perfect. So even the ideal, bug-free application is doomed to deal with errors from time to time.
Building and Consuming a REST API with Angular 9: Sending GET Requests with HttpClient and Services by Example
(Ahmed Bouchefra) In this part of our Angular 9 tutorial, we’ll build a fake REST API backend for our Angular frontend using json-server and faker.js and next, we’ll see how to create a service to send GET requests to our backend to fetch and consume data which will be rendered in the home component
Project reactor – de-structuring a Tuple
(Biju Kunjummen) Tuples are simple data structures that hold a fixed set of items, each of a different data type.