(Otavio Santana) Want to learn more about handling pagination with JAX-RS? Look no further than Jakarta EE and MicroProfile.
Tag: JSON / JAVA / XML
Creating React Component Without Babel
(Mahesh Verma) In this article, I am going to create a simple React application with and without Babel. Often, for creating React applications, we need to install some packages and tools, like NPM, Webpack, and Babel.
Dynamic tabs with Angular 6+ and ng-bootstrap
(Emmy Hermans) One of our Angular applications required the use of dynamic tabs. Since the project already uses ng-bootstrap components and bootstrap for the styling, I decided to use the tabset component from ng-bootstrap.
Java Integration Test in Travis with PR Coverage
(ArindamNayak) This article explains how to setup the integration test with a hosted CI, here I am using travis. Along with the setup, I will explain how you can publish the coverage report to pull request.
Angular Tools for High Performance
(Minko Gechev) This post, contains a list of new tools and practices that can help us build faster Angular apps and monitor their performance over time. In each section, you’ll find links for further reference on how to incorporate them in your project.
Getting Started With Ionic 4, Angular And .NET Core 3
(Smiten Kalathiya) In this article, let’s talk about what Ionic framework is, why developers choose it, and how to implement it with Angular and .NET Core 3
Reverse Lookups with JavaScript
(David Walsh) I’ve always loved exploring regular expressions because they’re one of those skills that’s never taught in school — you need to pick them up on the fly, messing up and fixing them along the way.
GraphQL: Evolution of Modern Age Database Management System
(David Cuelogic) The word GraphQL keeps popping up a lot around the web. It has been mentioned in many technical events as well, the most recent being the AWS re:Invent 2017, where they announced AppSync, a fully managed GraphQL service.
Running a Java class as a subprocess
(Dan Newton) Running a Java class (not a jar) as a subprocess is something I needed to do this week. More precisely, I wanted to spawn a new process from within a test, instead of running it inside the test directly (in-process).
Binding Event Handler And Method As Props In React
(Priyanka Jain) This article contains the details about binding event handlers and using methods as props.