Main menu:

View Douglas Rodrigues's profile on LinkedIn

Site search

Syndication

Categories

September 2010
M T W T F S S
« Sep    
 12345
6789101112
13141516171819
20212223242526
27282930  

Archive

Archive for 'java'

Another CSV library is born

After getting tired of so many half-baked CSV Java libraries, I decided to write my own.

http://code.google.com/p/jcsvlib/

I challenge you to find a competitor library with:

an uglier name, or;
simpler to use.

Start learning JCR and Apache Jackrabbit

If you would like to get your hands dirty on content repositories in Java, but found no help to start, maybe the essay I wrote for the Cambridge Technology Partners Java blog can be of your interest.
It shows how to create the initial environment for a simple Java web project, so you can use it […]

Real-time shared edition with Eclipse Ganymede

The new Eclipse 3.4 release (the simultaneous release of a bunch of subprojects is tagged “Ganymede“) includes a feature which allows you to share your editor with a friend online. A screencast presenting the feature can be found here.

Nas malhas do meu spam

URGENTE: Vaga Analista Programador Java Desenvolvimento
Conhecimentos requeridos: em desenvolvimento J2EE, EJB, EJP, e MVC, Frameworks, hibernate, vivência com designer-parttners, single tom, glossfish, portlets federados e webservices. Comprometimento e iniciativa, dinamismo e criatividade e senso de urgência

Glossário:

designer-parttners: O seu parceiro, sexual ou não, tem que ser designer.
single tom: […]

Eclipse hint - Singleton quick create

Let’s make singleton creating in Eclipse easier. Go to “Window>Preferences…” and navigate through the following structure: “Java>Editor>Templates”. Click “New…” and put ‘singleton‘ in the “Name” field. In the “Pattern” field, put the following code.
/**
* Singleton
*/
private static final ${enclosing_type} instance = new ${enclosing_type}();
public static ${enclosing_type} getInstance() {
return instance;
}
private ${enclosing_type}() {}
Now, to create singleton classes, all you […]

Wanna learn GWT?

Do you want to learn how to use Google Web Toolkit? So you may be interested in this article I wrote. It’s a tutorial that explains how to use GWT from scratch, and will take not more than 30 minutes to accomplish.