Archives: Tutorials

All Tutorials

Filter table data in AngularJS

In this blog, we will learn how to implement a search filter on an HTML table using AngularJS. To filter table data in AngularJS we generally used the concept of the View and the Controller. Search table or filter data randomly in AngularJS The view:-  The ng-view directive simply creates a placeholder where a corresponding …

Filter table data in AngularJS Read More »

maven dependencies for Java Web Application

Below are the required dependencies of a Java web application development. <project xmlns=”http://maven.apache.org/POM/4.0.0″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd”> <modelVersion>4.0.0</modelVersion> <groupId>AirLineTicketBooking</groupId> <artifactId>AirLineTicketBooking</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>AirLineTicketBooking Maven Webapp</name> <url>http://maven.apache.org</url> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.15</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.14</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4.7</version> </dependency> <dependency> <groupId>c3p0</groupId> <artifactId>c3p0</artifactId> <version>0.9.1.2</version> </dependency> </dependencies> <build> <finalName>AirLineTicketBooking</finalName> </build> …

maven dependencies for Java Web Application Read More »