Java 开发 2.0: 您也可以租用 EC2
2009-11-05 00:00:00 来源:WEB开发网
清单 2. 非常简洁的 Groovlethtml.html {
head {
title("Hello from EC2")
}
body {
p("Hello from EC2!")
}
}
代码就这么多。仅仅几行代码就会生成格式良好的 HTML,其中有一个 <head> 元素,后面是 <title>,然后是 <body> 元素和一个段落,太简单了。创建文件 EC2Groovlet.groovy,在其中输入清单 2 中的代码。把这个文件也保存到 Web 内容目录中。
希望创建 XML?很容易。不想让视图与控制器混在一起?没问题,使用 GroovyServer Page (GSP) 或 JavaServer Page (JSP) 就可以。无论您喜欢哪种方式,用 Groovy 编写 servlet 都非常容易。现在看看在 EC2 上使用 servlet 是多么容易。
作为最后一步,在项目的上下文根中创建一个简单的 index.html 文件。这个文件会给以后提供方便,因为在 Eclipse 中访问 EC2 时,Eclipse 访问的 URL 是上下文根;如果没有找到 index.html 文件,就会收到来自 Tomcat 的错误页面。在 index.html 中创建 Groovlet 的相对链接。
例如,我的 index.html 像清单 3 这样:
清单 3. 指向 Groovlet 的简单 index.html<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert any old title here!</title>
</head>
<body>
<p><a href="EC2Groovlet.groovy">Groovy is slick!</a></p>
</body>
</html>
更多精彩
赞助商链接