res.setContentType("text/html");
PrintWriter out = res.getWriter();
Document doc = new Document();
doc.appendTitle("Testing ECS");
doc.appendBody(new Big("Hello!"))
.appendBody(new P())
.appendBody("The current time is " + new Date());
doc.output(out);