-
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: 1160
-
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: 1372
-
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: 1247
-
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: 1255
-
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: 1092
-
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: 1366
-
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: 1286
-
How to Apache Ant on Mac OS X
In this tutorial, we will show you how to install Apache Ant on Mac OSX.
Date: 2019-08-17 View: 1517
-
How to install Apache Ant on Windows
To install Apache Ant on Windows, you just need to download the Ant’s zip file, and Unzip it, and configure the ANT_HOME Windows environment variables.
Date: 2019-08-17 View: 1582
-
Convert DateTime to Date, but TimeZone is missing?
A code snippet to use Joda Time to convert a java.util.Date to different timezone :
Date: 2019-08-17 View: 1267
-
Must include junit.jar if not in Ants own classpath
Declares a junit task in Ant like this
Date: 2019-08-17 View: 2583
-
Ant and jUnit Task example
In this tutorial, we will show you how to run a junit test in Ant build.
Date: 2019-08-17 View: 1443
-
Maven Get source code for Jar
In Maven, you can get source code for project dependencies in most IDEs like this :
Date: 2019-08-17 View: 1308
-
Java Convert Date to Calendar example
In Java, you can use calendar.setTime(date) to convert a Date object to a Calendar object.
Date: 2019-08-17 View: 1327
-
Apache Ant Tutorial
Apache Ant, is a classic Java project build tool.
Date: 2019-08-17 View: 1134