freemarker是開源的模板框架。對於它的介紹網上已經很多了。詳情可參考主頁:
4.在web-inf目錄下建一資料夾templates,然後在這個資料夾裡面新建乙個模板檔案test.ftl
$
5.建乙個helloservlet:
protected void dopost(httpservletrequest req, httpservletresponse resp) throws servletexception, ioexception6.web.xml中的相應配置:
first
lemon.servlet.firstservlet
/hello
7.啟動瀏覽器訪問:http://localhost:8080/freemarker/hello
前台輸出:您好!
FreeMarker的使用步驟
原始freemarker的用法 configuration config new configuration configuration.getversion 這裡設定的是模版目錄 config.setdirectoryfortemplateloading new file 模板位址 config....
使用freemarker模板生成word文件
專案中最近用到這個東西,做下記錄。如下圖,先準備好乙個 office2003 word文件當做模板。文件中 姓名 性別和生日已經使用佔位符代替,生成過程中將會根據實際情況進行替換。然後將word文件另存為 word xml文件 完成後,將test.xml重新命名為test.ftl。接下來,實現 如下...
使用freemarker生成靜態頁面
開發門戶 時,我們需要把頁面生成靜態的,以應對大規模的訪問,這篇文章主要介紹了,如何使用freemarker的api將模板檔案 ftl 生成為html檔案 建立gettemplate 方法用於獲取 freemarker的模板 template 物件 public static template ge...