How to use Spring Data JDBC in a web applicationThis article explains how to use spring data JDBC in a web application built with the spring framework. August 23, 2022 |
7 New Features introduced in Next js 11 in 2021Next js 11 is now released. There are seven improvements introduced with this release. This article goes through each change and discuss it in detail. July 17, 2021 |
Routing in Nextjs: How routing works in NextjsRouting works differently in Next js compared to React js. This tutorial explains how Next js routing works with a downloadable project example. August 23, 2022 |
How to use google adsense in Next JsUsing Adsense in Next js needs a different approach compared to a traditional request-based website. This article explains how to use Google Adsense in a Next js application. October 9, 2022 |
Nextjs How to use getServerSidePropsIn simple terms, getServerSideProps enables a page to render server-side. getServerSideProps renders your client-side page in server-side and returns a hydrated SEO-friendly HTML ... October 9, 2022 |
Document parsing with Jsoupjsoup is a Java library to work with HTML and XML markups. jsoup provides an API to extract and manipulate markup data, allowing us to scrape and parse HTML and XML from a URL, fil... October 9, 2022 |
Spring framework HandlerInterceptor exampleHandlerInterceptor is similar to a Servlet Filter. In addition HandlerInterceptor allows custom pre-processing with the option of prohibiting the execution of the handler itself, a... August 23, 2022 |
React js google tag manager: React Google analytics problem solvedGoogle tag manager, out of the box is unable to track React js page navigations using react-router. This article explains how the React js Router works and how to make Google tag m... October 8, 2022 |
Junit private methods: How to unit test private methods and classesUnit testing private methods and classes are possible by using Powermock's Whitebox. The Whitebox uses reflection to create inner class instances and invoke private methods outside... August 23, 2022 |
Reactjs global state without redux: React state management with context apiThis article explains how to use the react context API to manage the application's global state without using complex libraries such as redux and prop drilling. August 23, 2022 |