[5.x] Lucee Install On Windows

Looking to move from 4.5 series up to 5.x Lucee via clean install

What is the most stable way to run up a tomcat / lucee stack on a windows
vm with IIS?

Cheers,
Chris Dawes

A little different approach, but requires less server-specific
configuration, and makes it easier to deploy your CFML app as a easily
portable WAR:

Assuming you’re using Eclipse:

  1. Create a new dynamic web app and convert to a maven project (or use a
    maven webapp archetype to create a new project)
  2. Add the following to your POM


    org.lucee
    lucee
    5.0.0.98-SNAPSHOT
* * org.apache.felix org.apache.felix.framework 4.2.1 sonatype-snapshots sonatype-snapshots https://oss.sonatype.org/content/repositories/snapshots/ default
  1. configure the CFMLServlet in your project’s WEB-INF/web.xml
  2. add your cfml/lucee scripts under the web app directory
  3. using eclipse you can then run it on any configured servlet container

Using mvn package, you get your nice, tidy target/.war file
ready to deploy to any running servlet container.

What’s nice about this is that you can use this methodology to deploy
multiple apps based on different versions of Lucee to the same servlet
container.On Wednesday, October 21, 2015 at 7:48:32 AM UTC-5, Dawesi wrote:

Looking to move from 4.5 series up to 5.x Lucee via clean install

What is the most stable way to run up a tomcat / lucee stack on a windows
vm with IIS?

Cheers,
Chris Dawes