-
Maven – Create a fat Jar file One-JAR example
In this tutorial, we will show you how to use Maven build tool, One-JAR plugin to create a single Jar together with its dependency Jars into a single executable Jar file, so called fat Jar.
Date: 2019-08-17 View: 2482
-
Maven Exclude log4j.properties in Jar file
This example shows you how to use Maven to exclude the log4j.properties file from your Jar file.
Date: 2019-08-17 View: 2680
-
Create a fat Jar file Maven Assembly Plugin
In this tutorial, we will show you how to create a fat/uber jar with Maven Assembly Plugin. Which means create a Jar together with its dependency Jars into a single executable Jar file.
Date: 2019-08-17 View: 2026
-
Ant How to create a Java Project
In this tutorial, we will show you how to use Ant build tool to manage a Java project, compile, and package it into a Jar file.
Date: 2019-08-17 View: 1959
-
Ant How To Create A Jar File with external libraries
In this tutorial, we will show you how to use Ant build script to create a Jar file and working with the project’s external libraries / dependencies.
Date: 2019-08-17 View: 2147
-
Java AWT Layouts
The java.awt library provides 5 basic layouts. Each layout has its own significance and all of them are completely different. Here in this article, we will discuss how to apply any layout to a frame or a panel and also discuss about each layout in brief.
Date: 2019-08-17 View: 1919
-
Ant Create a fat jar file
In this tutorial, we will show you how to use Ant build script to create a big far / uber Jar file, which mean include the entire project external dependencies into a single jar file.
Date: 2019-08-17 View: 2338
-
Ant Spring MVC and WAR file Example
In this tutorial, we will show you how to use Ant build script to manage a Spring MVC web application project, create a WAR file and deploy to Tomcat.
Date: 2019-08-17 View: 1975
-
How to debug Ant Ivy project in Eclipse IDE
In this tutorial, we will show you how to debug an Ant-Ivy web project in Eclipse IDE.
Date: 2019-08-17 View: 1799
-
Where is Eclipse deploy web application Tomcat
By default Eclipse deploys web application to a internal plugin folder called wtpwebapps, which is located in the following directory :
Date: 2019-08-17 View: 2379
-
Mac OSX What program is using port 80
In Mac OSX, you can use sudo lsof -i :80 to find out what program is using or listening on port 80 :
Date: 2019-08-17 View: 1909
-
Mac OSX What program is using port 8080
By default, most Java web application servers are listening on port 8080, and it can easily cause the popular 8080 port conflict error. In Mac OSX, you can use sudo lsof -i :8080 | grep LISTEN to find out what program is listening on port 8080 :
Date: 2019-08-17 View: 1881
-
Linux How to extract a tar.gz file
In this tutorial, we will show you how to extract a tar.gz file :
Date: 2019-08-17 View: 1716
-
Java Convert String to Enum object
In Java, you can use Enum valueOf() to convert a String to an Enum object, review the following case study :
Date: 2019-08-17 View: 1938
-
Ant – How to print classpath from path id
In Ant, you can use pathconvert task to print out the classpath from path :
Date: 2019-08-17 View: 2095


