控制器由servlet实现,页由freeMark完成。
第一个例子:
test.ftl如下:
<html>
<head>
<title>FreeMarker Example Web Application 1</title>
</head>
<body>
${message}
</body>
</html>
servlet如下:
public class HelloServlet extends HttpServlet {
private Configuration cfg;
public void init() {
cfg = new Configuration();
cfg.setServletContextForTemplateLoading(getServletContext(),
"templates");
}
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
Map root = new HashMap();
root.put("message", "Hello World!");
Template t = cfg.getTemplate("test.ftl");
System.out.println(t.getEncoding());//GBK编码
response.setContentType("text/html; charset=" + t.getEncoding());
Writer out = response.getWriter();
try {
t.process(root, out);
} catch (TemplateException e) {
throw new ServletException(
"Error while processing FreeMarker template", e);
}
}
}
web.xml配置如下:
<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>com.mengya.servlet.HelloServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>hello</servlet-name>
<url-pattern>/hello</url-pattern>
</servlet-mapping>
测试:
<body>
<a href="hello">FreeMark测试</a>
</body>
第二个例子:(get,set方法省掉,辅助类)
public class Page {
private String template;
private String forward;
private Map root = new HashMap();
}
共同的servlet如下:
public class ControllerServlet extends HttpServlet {
private Configuration cfg;
public void init() {
cfg = new Configuration();
//设置ftl文件加载的路径
cfg.setServletContextForTemplateLoading(getServletContext(),
"templates");
//设置freeMark更新缓存的时间//0表示不用缓存
cfg.setTemplateUpdateDelay(0);
cfg.setTemplateExceptionHandler(TemplateExceptionHandler.HTML_DEBUG_HANDLER);
//设置freeMark的包裹策略
cfg.setObjectWrapper(ObjectWrapper.BEANS_WRAPPER);
cfg.setDefaultEncoding("ISO-8859-1");
cfg.setOutputEncoding("UTF-8");
cfg.setLocale(Locale.US);
}
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doGet(req, resp);
}
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
//URL:http://127.0.0.1:8080/FreeMarkStudy/templates/index.a
//request.getServletPath:/templates/index.a
String action = req.getServletPath();
if (action == null)
action = "index";
if (action.startsWith("/"))
//action = action.substring(1);
action = action.substring(action.lastIndexOf("/")+1);//获得index
if (action.lastIndexOf(".") != -1) {
action = action.substring(0, action.lastIndexOf("."));
}
Method actionMethod;
try {
actionMethod = getClass().getMethod(action + "Action",
new Class[] { HttpServletRequest.class, Page.class });
} catch (NoSuchMethodException e) {
throw new ServletException("Unknown action: " + action);
}
req.setCharacterEncoding(cfg.getOutputEncoding());
Page page = new Page();
try {
actionMethod.invoke(this, new Object[] { req, page });
} catch (IllegalAccessException e) {
throw new ServletException(e);
} catch (InvocationTargetException e) {
throw new ServletException(e.getTargetException());
}
if (page.getTemplate() != null) {
Template t = cfg.getTemplate(page.getTemplate());
resp.setContentType("text/html; charset=" + cfg.getOutputEncoding());
resp.setHeader("Cache-Control",
"no-store, no-cache, must-revalidate, "
+ "post-check=0, pre-check=0");
resp.setHeader("Pragma", "no-cache");
resp.setHeader("Expires", "Thu, 01 Dec 1994 00:00:00 GMT");
Writer out = resp.getWriter();
try {
t.process(page.getRoot(), out);
} catch (TemplateException e) {
throw new ServletException(
"Error while processing FreeMarker template", e);
}
} else if (page.getForward() != null) {
RequestDispatcher rd = req.getRequestDispatcher(page.getForward());
rd.forward(req, resp);
} else {
throw new ServletException("The action didn't specified a command.");
}
}
}
实体Bean如下:(get,set方法省掉)
public class GuestbookEntry {
private String name;
private String email;
private String message;
}
servlet如下:
public class GuestbookServlet extends ControllerServlet {
private ArrayList guestbook = new ArrayList();
public void indexAction(HttpServletRequest req, Page p) {
List snapShot;
synchronized (guestbook) {
snapShot = (List) guestbook.clone();
}
p.put("guestbook", snapShot);
p.setTemplate("index.ftl");
}
public void formAction (HttpServletRequest req, Page p)
throws IOException, ServletException {
p.put("name", noNull(req.getParameter("name")));
p.put("email", noNull(req.getParameter("email")));
p.put("message", noNull(req.getParameter("message")));
List errors = (List) req.getAttribute("errors");
p.put("errors", errors == null ? new ArrayList() : errors);
p.setTemplate("form.ftl");
}
public void addAction (HttpServletRequest req, Page p)
throws IOException, ServletException {
List errors = new ArrayList();
String name = req.getParameter("name");
String email = req.getParameter("email");
String message = req.getParameter("message");
if (isBlank(name)) {
errors.add("You must give your name.");
}
if (isBlank(message)) {
errors.add("You must give a message.");
}
if (errors.isEmpty()) {
if (email == null) email = "";
GuestbookEntry e = new GuestbookEntry(name.trim(), email.trim(), message);
synchronized (guestbook) {
guestbook.add(0, e);
}
p.put("entry", e);
p.setTemplate("add.ftl");
} else {
req.setAttribute("errors", errors);
p.setForward("form.a");
}
}
public static String noNull(String s) {
return s == null ? "" : s;
}
public static boolean isBlank(String s) {
return s == null || s.trim().length() == 0;
}
}
web.xml配置如下:
<servlet>
<servlet-name>guestbook</servlet-name>
<servlet-class>com.mengya.servlet.GuestbookServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>guestbook</servlet-name>
<url-pattern>*.a</url-pattern>
</servlet-mapping>
共同的ftl如下:
<#macro page title>
<html>
<head>
<title>FreeMarker Example Web Application 2 - ${title?html}</title>
<meta http-equiv="Content-type" content="text/html; charset=${.output_encoding}">
</head>
<body>
<h1>${title?html}</h1>
<hr>
<#nested>
<hr>
<table border="0" cellspacing=0 cellpadding=0 width="100%">
<tr valign="middle">
<td align="left">
<i>FreeMarker Example 2</i>
</td>
<td align="right">
<a href="http://freemarker.org"><img src="poweredby_ffffff.png" border=0></a>
</td>
</tr>
</table>
</body>
</html>
</#macro>
页面ftl文件一:index.ftl(做list用)
<#import "/common/common.ftl" as com>
<#escape x as x?html>
<@com.page title="Index">
<a href="form.a">Add new message</a> | <a href="help.html">How this works?</a>
<#if guestbook?size = 0>
<p>No messages.
<#else>
<p>The messages are:
<table border=0 cellspacing=2 cellpadding=2 width="100%">
<tr align=center valign=top>
<th bgcolor="#C0C0C0">Name</th>
<th bgcolor="#C0C0C0">Message</td>
</tr>
<#list guestbook as e>
<tr align=left valign=top>
<td bgcolor="#E0E0E0">${e.name} <#if e.email?length != 0> (<a href="mailto:${e.email}">${e.email}</a>)</#if></td>
<td bgcolor="#E0E0E0">${e.message}</td>
</tr>
</#list>
</table>
</#if>
</@com.page>
add.ftl如下:
<#import "/common/common.ftl" as com>
<#escape x as x?html>
<@com.page title="Entry added">
<p>You have added the following entry to the guestbook:
<p><b>Name:</b> ${entry.name}
<#if entry.email?length != 0>
<p><b>Email:</b> ${entry.email}
</#if>
<p><b>Message:</b> ${entry.message}
<p><a href="index.a">Back to the index page...</a>
</@com.page>
</#escape>
from.ftl如下:
<#import "/common/common.ftl" as com>
<#escape x as x?html>
<@com.page title="Add Entry">
<#if errors?size != 0>
<p><font color=red>Please correct the following problems:</font>
<ul>
<#list errors as e>
<li><font color=red>${e}</font>
</#list>
</ul>
</#if>
<form method="POST" action="add.a">
<p>Your name:<br>
<input type="text" name="name" value="${name}" size=60>
<p>Your e-mail (optional):<br>
<input type="text" name="email" value="${email}" size=60>
<p>Message:<br>
<textarea name="message" wrap="soft" rows=3 cols=60>${message}</textarea>
<p><input type="submit" value="Submit">
</form>
<p><a href="index.a">Back to the index page</a>
</@com.page>
分享到:
相关推荐
spket1.6.18与jboss-freemark的eclipse插件
主要介绍了freemark标签的相关基础知识,基本上了解Freemark标签的应用
它被广泛应用于Web开发中,特别是与Java后端框架如Spring、Struts等配合使用,为前端展示提供便捷的模板渲染服务。Eclipse是流行的Java集成开发环境(IDE),为了方便开发者在Eclipse中编写和调试FreeMarker模板,有...
6. **国际化与本地化**:FreeMark支持多语言环境,可以使用`<#t>`指令进行日期和数字的本地化格式化。 7. **模板继承与导入**:使用`<#macro>`定义可重用的宏,通过`<@macroName>`调用。`<#import>`可以导入宏库,`...
FREEMARK资料,开发入门指南 是开发人员了解FREEMARK的一本入门资料
**Freemark**是一种强大的模板引擎,主要用于将数据模型与表示层分离。它通过一种简洁而强大的语法来实现动态内容的渲染,使得开发者能够更加灵活地控制页面布局和内容展示。本指南旨在全面介绍Freemark的基本概念...
Freemark是一个强大的模板引擎,它允许开发者将逻辑与展示分离,使得HTML或其他类型的文档生成变得更加简洁和灵活。本教程适用于初学者,旨在快速引导你掌握Freemark的基本使用方法。我们将通过几个关键步骤来理解并...
在你提供的资料中,"freemark中文资料"和"freemark教程"是学习的关键。它们可能包含了Freemarker的基本概念解释、实例演示、常见问题解答等。"freemark基础和高级教程"则更深入地讲解了Freemarker的各种特性,是进阶...
- **分离关注点**:Freemarker的设计理念是将业务逻辑与展示逻辑分开,开发者可以专注于数据处理,而模板设计者则负责页面布局和样式。 2. **Freemarker模板语法** - **变量**:`${expression}` 用于输出表达式的...
1. **安装与引入**: 首先,确保你的项目已经添加了FreeMarker的依赖库,通常对于Java项目,可以通过Maven或Gradle将其添加到构建文件中。 2. **创建模板文件**: 使用FreeMarker语法编写HTML模板文件,这些文件通常...
freemark资料
在实际开发中,这种组合提供了良好的分离关注点,让开发者可以专注于业务逻辑的实现,而FreeMarker则专注于视图的呈现。为了完成这个例子,你需要安装Struts2的依赖库,设置数据库连接,并根据描述自行导入相关包。...
`将模板与数据模型合并,并将结果写入到`Writer`对象,通常是Servlet的`Response`输出流。 **FreeMarker语法特点:** 1. **变量**:使用`${variable}`引用数据模型中的变量。例如`${name}`会输出"John"。 2. **...
FreeMarker与Spring框架的集成也十分紧密,可以方便地在Spring MVC中使用。 在`freeMarkWeb`这个压缩包文件中,可能包含了项目的源代码、FreeMarker的模板文件以及其他必要的资源。为了进一步了解和使用这个项目,...
3. **变量定义与输出** - `<#assign var = value>` 定义全局变量并赋值。 - `<#local var = value>` 在宏或函数内定义局部变量并赋值。 - `<#global var = value>` 定义全局变量并赋值。 - `${var}` 输出变量并...
SpringMVC是一个轻量级的MVC(Model-View-Controller)框架,用于构建高效、可维护的Web应用程序,而FreeMarker则是一个模板引擎,它允许开发者将业务逻辑与视图层分离,使得前端展示更加灵活。 在SpringMVC中,...
当下载的excel格式内容比较复杂时,用程序生成excel文件就显得力不从心。这时采用excel模板化,更加便捷高效。本资源基于springboot+freemark模板做的示例。只需要了解下freemark基本语法即可。
Freemarker与iBatis是两个在Java开发中广泛使用的开源工具,它们分别在模板引擎和数据持久化层发挥着重要作用。本资料包提供的是关于这两者的动态运用及相关的程序、源代码和文档,旨在帮助开发者更好地理解和运用这...