How To Install and Configure Laravel with Nginx on Ubuntu 20.04 (LEMP)
Laravel is an open-source PHP framework that provides a set of tools and resources to build modern PHP applications. With a complete ecosystem leveraging its built-in features, Laravel’s popularity has…
How to Install Yarn on Ubuntu 20.04
Yarn is a JavaScript package manager compatible with npm that helps you automate the process of installing, updating, configuring, and removing npm packages. It caches every download package and speeds…
How to Install PHP on Ubuntu 20.04
PHP is one of the most used server-side programming languages. Many popular CMS and frameworks such as WordPress, Magento, and Laravel are written in PHP. This guide covers the steps…
How to Install Python Pip on Ubuntu 20.04
Pip is a tool for installing Python packages. With pip, you can search, download, and install packages from Python Package Index (PyPI) and other package indexes. This guide explains how…
How to Install Node.js and npm on Ubuntu 20.04
Node.js is a cross-platform JavaScript runtime environment built on Chrome’s JavaScript, designed to execute JavaScript code on the server-side. It is generally used to build back-end applications, but it is…
How to Install and Use PHP Composer on Ubuntu 20.04
Composer is a dependency manager for PHP (similar to npm for Node.js or pip for Python ). With Composer, you can specify the PHP libraries your project depends on, and…
Ehcache Logging example
Ehcache is using SLF4j logging, to log stuff, put a slf4j implementation in the project classpath, in this example, we use logback. Tools used :Ehcache 2.9, Maven 3, logback 1.0.13
Ehcache hello world example
In this tutorial, we will show you two examples to help you getting started with Ehcache. Tools used : Ehcache 2.9, Maven 3, Gradle 2, JDK 1.7 - P.S Ehcache…
Jersey + Spring integration example
This tutorial show you how to integrate Jersey web application with Spring framework. Technologies used :Jersey 1.8, Spring 3.0.5.RELEASE, Eclipse 3.6, Maven 3
RESTful Java client with Jersey client
This tutorial show you how to use Jersey client APIs to create a RESTful Java client to perform “GET” and “POST” requests to REST service that created in this “Jersey…