Java

  • submit to reddit

Code Autopsy

A mystery unsolved. When last examined, the structure of Apache Ant looked odd. Something didn't quite fit. The problem concerns...

0 replies - 683 views - 04/29/13 by Edmund Kirwan in Articles

Mind it: Synchronization is Risky

Hello Friends,Most of the developers know the benefits of threads (responsiveness, exploiting multicores, etc), most of them also know the risks of threads...

0 replies - 181 views - 04/28/13 by Vishal Jain in Articles

A Theorical Look into Object/Resource Pool Pattern

Definition: Sometimes our software projects need costly object creations (database connections, socket connections, large graphical objects etc.)....

0 replies - 1738 views - 04/28/13 by Cagdas Basaraner in Articles

The First Open Source Java Office Suite

Today I'm launching a new project: Joeffice. Joeffice will be the first open source office suite written in Java™. The goals:Demonstration that...

2 replies - 2776 views - 04/28/13 by Anthony Goubard in Articles

Android DevBytes: PictureViewer

Learn how to use ViewPropertyAnimator to get a cross-fade effect as new bitmaps get installed in an ImageView.Code...

0 replies - 1181 views - 04/27/13 by Mitch Pronschinske in Articles

Quick Video: Java EE and Modularity

Paul Bakker goes over modularity and Java EE 7 in this short video from JavaOne Russia.

0 replies - 1210 views - 04/27/13 by Mitch Pronschinske in Articles

Couchbase Java SDK Internals

Curator's Note: The content of this article was originally written by Michael Nitschinger here: http://nitschinger.at/ Motivation This blog post is...

0 replies - 2994 views - 04/27/13 by Don Pinto in Articles

Devoxx 2012 JUG Leader BOF Videos

Here are two well overdue video recordings of the Devoxx 2012 JUG Leader and Java Champions BOF from last November. Ooops! Sorry it has taken several months,...

0 replies - 642 views - 04/27/13 by Peter Pilgrim in Articles

Android DevBytes: RequestDuringLayout

In Android, horrible things can result from calling requestLayout() during a layout pass. DON'T DO THIS.

0 replies - 1254 views - 04/26/13 by Mitch Pronschinske in Articles

First look at Learning Play! Framework 2

I have always wanted to learn and use Play Framework and there have been previous attempts which I have blogged before, but recently I have got an opportunity...

0 replies - 2228 views - 04/26/13 by Mohamed Sanaulla in Articles

Spring Integration STS Templates Updated - 1.0.0.M6

We are proud to announce a new milestone release of the Spring Integration Templates version 1.0.0.M6 for Spring Tool Suite (STS). This...

0 replies - 722 views - 04/26/13 by Gunnar Hillert in Articles

Constructors of Sub and Super Classes in Java?

This post summarizes some commonly asked questions from Stackoverflow.com. 1. Why creating an object of the sub class invokes also the constructor of the...

0 replies - 1169 views - 04/26/13 by Ryan Wang in Articles

Links You Don't Want To Miss (Apr. 26)

Signs that you’re a good programmerYou’ve probably read “signs that you’re a bad programmer.” Well, this article addresses the flip-side of that...

1 replies - 2949 views - 04/26/13 by Eric Genesky in Articles

Modern Enterprise Application Configuration with Spring

Modern enterprise application configuration with Spring from Øredev Conference on Vimeo. The Spring family of projects have long been some of the most...

0 replies - 1474 views - 04/25/13 by Mitch Pronschinske in Articles

Why a synchronized StringBuffer was never a good idea

Introduction StringBuffer is a synchronized class for mutable strings.  The main problem with making it synchronized is that It was usually...

5 replies - 5034 views - 04/25/13 by Peter Lawrey in Articles