您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“如何基于SSM集成Freemarker模板引擎”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“如何基于SSM集成Freemarker模板引擎”這篇文章吧。
FreeMarker是一個(gè)用Java語言編寫的模板引擎,它基于模板來生成文本輸出。FreeMarker與Web容器無關(guān),即在Web運(yùn)行時(shí),它并不知道Servlet或HTTP。它不僅可以用作表現(xiàn)層的實(shí)現(xiàn)技術(shù),而且還可以用于生成XML,JSP或Java 文等。
可以徹底的分離表現(xiàn)層和業(yè)務(wù)邏輯。
曾經(jīng)在使用JSP 開發(fā)過程中發(fā)現(xiàn)在頁面中大量的存在業(yè)務(wù)邏輯的代碼,使得頁面內(nèi)容凌亂,在后期大量的修改維護(hù)過程中就變得非常困難
FreeMarker的原理就是:模板+數(shù)據(jù)模型=輸出,模板只負(fù)責(zé)數(shù)據(jù)在頁面中的表現(xiàn),不涉及任何的邏輯代碼,而所有的邏輯都是由數(shù)據(jù)模型來處理的。用戶最終看到的輸出是模板和數(shù)據(jù)模型合并后創(chuàng)建的。
在前后端分離的大趨勢(shì)下,項(xiàng)目開發(fā)過程中,應(yīng)盡量減少前端和后臺(tái)的依賴和耦合,前端和后臺(tái)盡可能采用 ajax 進(jìn)行交互;但是全站 ajax,不利于網(wǎng)站 SEO,所以引入模板引擎,盡量減少前端對(duì)后端的依賴;SSM 架構(gòu)下一般采用 Freemarker,Spring Boot 架構(gòu)下一般推薦采用 Thymeleaf 模板引擎;
1、引入依賴
<!-- Freemarker 模板引擎 --> <dependency> <groupId>org.freemarker</groupId> <artifactId>freemarker</artifactId> <version>2.3.29</version> </dependency>
2、spring mvc 核心配置文件,spring-mvc.xml,添加相關(guān)配置;
<!-- freeMarker 視圖解析器 --> <bean id="viewResolverFtl" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.freemarker.FreeMarkerView"/> <property name="contentType" value="text/html; charset=utf-8"/> <property name="cache" value="false"/> <property name="suffix" value=".ftl"/> <property name="order" value="0"/> <property name="requestContextAttribute" value="request"/> </bean> <!-- freemarker 核心配置 --> <bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer"> <!--解析路徑--> <property name="templateLoaderPath" value="/WEB-INF/view/"></property> <!-- 設(shè)置 FreeMarker 環(huán)境屬性 --> <property name="freemarkerSettings"> <props> <!--刷新模板的周期,單位為秒 --> <prop key="template_update_delay">5</prop> <!--模板的編碼格式 --> <prop key="default_encoding">UTF-8</prop> <!-- 本地化設(shè)置 --> <prop key="locale">UTF-8</prop> <prop key="datetime_format">yyyy-MM-dd HH:mm:ss</prop> <prop key="time_format">HH:mm:ss</prop> <prop key="number_format">0.####</prop> <prop key="boolean_format">true,false</prop> <prop key="whitespace_stripping">true</prop> <prop key="tag_syntax">auto_detect</prop> <prop key="url_escaping_charset">UTF-8</prop> </props> </property> </bean>
2、Controller 中調(diào)用 調(diào)用模板,渲染頁面效果;
@RequestMapping(value = "/index", method = RequestMethod.GET) public String index(Model model){ model.addAttribute("fm","2020"); return "index"; }
調(diào)用模板引擎,跳轉(zhuǎn)到 /WEB-INF/view/index.ftl,傳遞數(shù)據(jù),渲染頁面;
3、定義模板文件 命名為:index.ftl;
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>首頁</title> </head> <body> ${fm} </body> </html>
以上是“如何基于SSM集成Freemarker模板引擎”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。