8:00 – 4:00
- Working on getting Jetty running.
- First, don’t add the jetty-distribution as a dependency in the pom file. It’s a zip file, and maven doesn’t know what to do with that during compilation
- Got the simple server example running. Whee!
- It looks like the minimum set of jars are the jetty server jar and the jetty servlet jar. Once these were in, I created a server (one line), then created a context (two lines), added a handler for the context, and then added three servlets that have three different urls. This is all working.
- Tomorrow, figure out how to delete a servlet, then roll into the Facade class
