Eclipse

TwitterFacebook
Get flash to fully experience Pearltrees
http://www.eclipse.org/articles/article.php?file=Article-EclipseDbWebapps/index.html Introduction Creating database-driven web applications in Java has traditionally involved a steep learning curve.

Corner Article: Creating Database Web Applications with Eclipse

Birt

http://www.vogella.com/articles/EclipseJFaceTable/article.html

Eclipse JFace TableViewer - Tutorial

viewer = new TableViewer(parent, SWT.MULTI | SWT.H_SCROLL | SWT.V_SCROLL | SWT.FULL_SELECTION | SWT.BORDER); createColumns(parent); final Table table = viewer.getTable(); table.setHeaderVisible(true); table.setLinesVisible(true); Eclipse provides already an implementation of this interface via the ArrayContentProvider class. ArrayContentProvider supports Arrays or Lists as basis for the underlying data. As ArrayContentProvider does not store any data, you can share instances. To get a shared instance use the ArrayContentProvider.getInstance() method. Each TableViewerColumn needs to get a LabelProvider assigned via the setLabelProvider() method.
http://www.vogella.de/articles/Groovy/article.html

Groovy with Eclipse - Tutorial

This article gives a short overview of the Groovy language including collections, loops, gstrings, MOP, closures, operator overloading, XML handing and using Groovy together with Java class.
Eclipse RCP

Eclipse RAP

Teach Me To Code - Introduction to Grails - Part 1

http://teachmetocode.com/screencasts/introduction-to-grails-part-1/ Are you new to Grails? Grails is an excellent alternative to Ruby on Rails, which uses Groovy / Java. In this screencast, learn how to create a simple CRUD system with Grails.