Installing JDK8 on linux (debian/ubuntu)

So how do I install JDK8 on debian etc these days when there seems to be some mess with Oracle licensing and linux package managers? Found some nice instructions at https://www.digitalocean.com/community/tutorials/how-to-manually-install-oracle-java-on-a-debian-or-ubuntu-vps To summarize: Download the .tar.gz file for linux from Oracle website such as http://www.oracle.com/technetwork/java/javase/downloads, and we unzip that to some nice and shiny directory. […]

Read More Installing JDK8 on linux (debian/ubuntu)

jetty nio issues

Trying lately to get Jetty to work with Jersey on my computers. getting those “Unable to establish loopback connection” and “Connection refused” errors. Googling this indicates it is a firewall issue but I had to try to debug anyway right.. So I tried to write some simple code to test if I had problems binding […]

Read More jetty nio issues

Java wildcard classpath

Since JDK 6 you are supposed to be able to write a classpath like java -cp * foo.Bar which should set the classpath to contain every .jar ending file in the current directory. But if you do this, it gives you an error that main class “xxx” could not be found, where “xxx” equals the […]

Read More Java wildcard classpath