日期:2014-05-16 浏览次数:20423 次
<bean class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver"> <property name="suffix" value=".ftl" /> <property name="exposeRequestAttributes" value="true" /> <property name="exposeSessionAttributes" value="true" /> <property name="contentType" value="text/html; charset=utf-8"/> <property name="exposeSpringMacroHelpers" value="true"/><--注意这里 </bean>
<#import "spring.ftl" as spring /> <---引入宏 <html> <head> <title> baobaotao </title> </head> <body> 精华文章 <table> <#list topicList as topic> <tr> <td> ${topic.topicId} </td> <td> <a href="[b]<@spring.url '/showTopic.html?topicId=${topic.topicId}'/>[/b]">${topic.title}</a> </td> <td> ${topic.createDate?string("yyyy-MM-dd HH:mm:ss")} </td> </tr> </#list> <table> </body> </html>
public class SystemInitServlet extends HttpServlet { //.... public void init() throws ServletException {