Spring Framework Tutorial – Hello World

Latest Update: 2014/05/21 This post shows how to build a Spring Hello World application. The following are all steps required to make a Spring hello world program. 1. Set up development environment IDE: Eclipse IDE for Java EE Developers. The latest version is Eclipse Kepler (4.3.2). Here is the one you should download: 2. Create … Read more

Insert/Add Statements to Java Source Code by using Eclipse JDT ASTRewrite

This belongs to Eclipse JDT Tutorial Series. This code example is for inserting a statement to existing Java source code by using eclipse JDT. It works inside of a Plug-in. For simplicity purpose, the following code simple add a method invocation statement called “add” to the first line of a method. public class Main { … Read more