Updated: 25 August 2024
Run tests but disable Checkstyle
mvn test -Dcheckstyle.skip
Freelance software engineer United Kingdom
Updated: 25 August 2024
Run tests but disable Checkstyle
mvn test -Dcheckstyle.skip
Updated: 23 March 2024
Create file HelloWorld.java
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
}
}
Bash into the Maven Docker image, which has the JDK and Java pre-installed
docker run -it --rm --name my-maven-project \
-v "$(pwd)":/usr/src/mymaven -w /usr/src/mymaven \
maven:3.8.6-jdk-11 bash
Compile the source file into a class file
javac HelloWorld.java
Run the class file
java HelloWorld
Updated: 25 August 2024
Run a jar file
java -jar someapp.jar
Show table of contents for a jar archive
jar --list --file the_jar.jar
Updated: 10 September 2022
Taken from O’Reilly ‘Learning Java 4th edition’.
Generics are an enhancement to class syntax which allows a class to be specialised for given types. A generic class requires one or more type parameters and uses these to customise itself.
Below, E is a type variable. It indicates the class is generic and requires a Java type as an argument to make it complete:
public class List<E> { public void add( E element ) { ... } public E get( int i ) { ... } }
The List class refers to the type variable as if it were a real type, to be substituted later. The type variable may be used to declare:
The same angle bracket syntax supplies the type parameter when we want to use the List type:
List<String> listOfStrings;
In this snippet, we declared a variable called listOfStrings using the generic type List with a type parameter of String. String refers to the String class, but we could have specialised List with any Java class type. For example:
List<Date> dates; List<java.math.BigDecimal> decimals; List<Foo> foos;