Java

  • submit to reddit

OTN Interview by Yolande Porier about Java EE 7

After the successful first Devoxx UK a few weeks back my interview with Yolande Porier from Oracle Technology Network finally got published on Parleys. She had...

0 replies - 1465 views - 04/23/13 by Markus Eisele in Articles

How to Convert Array to ArrayList in Java?

This is a question that I wanted to take a look at for myself, because it is one of the top viewed and voted questions in stackoverflow. The question asks how...

0 replies - 2909 views - 04/23/13 by Ryan Wang in Articles

Plugging the HawtIO Monitoring Webapp into a Stand-Alone ActiveMQ Instance

HawtIO is a new pluggable HTML5 dashboard for monitoring ActiveMQ, Camel, Karaf, Fuse Fabric, Tomcat, and other technologies. Actually, I was completely...

0 replies - 1847 views - 04/23/13 by Christian Posta in Articles

Intellij IDEA 12 Android Support Review

In this article I would like to share with you a review of Android development support in Intellij IDEA 12 Community Edition. I switched to this IDE from...

0 replies - 2308 views - 04/22/13 by Krzysztof Biga in Articles

What Can We Learn From a Java HelloWorld Program?

This is the program every Java programmer knows. I want to see what can be learned from this simple program. A simple start may lead to learning more complex...

0 replies - 1359 views - 04/22/13 by Ryan Wang in Articles

How to Format Java Code Using Eclipse JDT?

Yo probably format your code often by pressing Ctrl+Shift+F or right clicking Source -> Format. This function is also provide in JDT, so you can also...

0 replies - 1905 views - 04/22/13 by Ryan Wang in Articles

DevBytes: KeyFrame Animations

Learn how to use AnimationDrawable to construct a keyframe animation where each frame is shown for a specified...

0 replies - 539 views - 04/21/13 by Mitch Pronschinske in Articles

Customizing EclipseLink JPA-RS Messages with MOXy

In a previous post I covered how EclipseLink JPA-RS can be used to expose a JPA persistence unit as a RESTful service.  In that example we interacted...

0 replies - 2434 views - 04/21/13 by Blaise Doughan in Articles

Twitter's Finagle for the Asynchronous Programmer

Matt Ho, CTO at LOYAL3, gives us the who-what-when-where-why on Twitter's Finagle. According to Matt, Finagle is an expressive network library for JVM...

0 replies - 1641 views - 04/20/13 by Mitch Pronschinske in Articles

The Delay of Java 8

Twitter lit up yesterday with the news that Oracle had come out and said Java 8 was going to be late . In reading the document, I repeatedly stopped and...

6 replies - 4153 views - 04/20/13 by Rob Williams in Articles

Introducing EclipseLink JPA-RS

In a previous series of posts I covered how to create a JAX-RS service that leveraged JPA for the persistence layer.  EclipseLink contains a component...

1 replies - 4091 views - 04/20/13 by Blaise Doughan in Articles

Puppet Debt

I’ve been playing around with a puppet configuration to run a neo4j server on an Ubuntu VM and one thing that has been quite tricky is getting the...

0 replies - 3482 views - 04/19/13 by Mark Needham in Articles

CometD and Camel in the Enterprise - A Working Example

Full code is available on GitHub All the Java code for the project is available in Github - requires Maven to run. See the README for more details - link...

0 replies - 1923 views - 04/19/13 by Adrian Milne in Articles

Just What Are Spring 3.2 Matrix Variables? - Part 2: The Code

My last blog on Spring's support for Matrix Variables concentrated on explaining what they were and why you'd want to use them. Having sorted out the what...

0 replies - 165 views - 04/19/13 by Roger Hughes in Articles

What Does a Java Array Look Like in Memory?

Arrays in Java store one of two things: either primitive values (int, char, …) or references (a.k.a pointers). When an object is creating by using...

0 replies - 4294 views - 04/19/13 by Ryan Wang in Articles