Assuming you already have ColdFusion 8 or earlier installed, be sure ColdFusion is running and you have a site folder in your ColdFusion wwwroot/ folder. This article assumes that you are running ColdFusion locally with the built-in JRun Server. However, if you are not, simply change the path in this tutorial to wherever your ColdFusion applications typically reside within your web root.
Select CFML Project (see Figure 2) and click Next.

Figure 2. The New Project wizard
Give your project a name (see Figure 3).

Figure 3. Naming a project.
Click OK.

Figure 4. Entering the local path to your ColdFusion server
To test your configuration, create a CFML page with some sample code to test your set up.
Create the page. Right-click your project and select New > CFML Page (see Figure 5).

Figure 5. Selecting CFML page option.
Give your page a name; I named mine test.cfm. In the test.cfm
page, type <cfoutput>##</cfoutput>.
Notice how adding one hash(#) creates two. CFEclipse has code completion capabilities. Although this is a very simple example, you may find CFEclipse finishing your syntax for you. It has great coding tools and reference guides as well.
Select the Dictionary view by clicking Window > Show View > Dictionary View (see Figure 6).

Figure 6. Selecting the Dictionary View
Now() function. Click between the two hash marks in your code and double-click the Now() function in the Dictionary view. You will see that the code was added to the
page. The hash marks (#) appear around the Now() function so that
your code looks like the following:
<cfoutput>#now()#</cfoutput>
Select your Browser view tab below your test.cfm page. If it is not already visible, you can click the Show view button to select the Browser View (see Figure 7).

Figure 7. Opening up the Browser View
If you received an error, check to make sure you do not have any typos in your code, that the URL is correct, that you saved your page, and that ColdFusion is running.