本文主要是介绍Freemarcker获取项目根目录,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
现在知道了Freemarker模板技术,发现在用Freemarker之后引入到文件中的CSS和JS文件都没有起作用,在JSP页面中还可以用<base href="<%=basePath%>">来设置绝对路径,请问怎么样在ftl文件中设置<base>标签的值?还有,生成静态页面之后怎么样显示用户登陆了的信息?
全部采用绝对定位即可,比如我的使用,在一个全局macro定义中定义变量basePath即可
<#-- 取得 应用的绝对根路径 -->
<#assign basePath="http://localhost:8088/freemarker">
<#macro head><title>预祝成功</title><link rel="shortcut icon" href="${basePath}/favicon.ico"><link rel="icon" type="image/gif" href="${basePath}/animated_favicon.gif"><meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache"><meta http-equiv="expires" content="0">
</#macro>
如果是在<body>中还需要这个绝对路径那应该怎么办呢?我现在的想法是,在省城HTML的Action中直接用HttpServletRequest获取到绝对路径path,放到root中,然后在ftl页面中使用<base href="path">
首先定义公共宏文件app.ftl(注意:使用request.contextPath)要增加spring视图配置,本人用的是spring框架,使用其他框架应该也需要加入支持的配置: <property name="requestContextAttribute" value="request" />
<#-- 取得 应用的绝对根路径 -->
<#assign basePath=request.contextPath>
<#macro head>
<title>预祝成功</title>
<link rel="shortcut icon" href="${basePath}/favicon.ico">
<link rel="icon" type="image/gif" href="${basePath}/animated_favicon.gif">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="pragma" content="no-cache"><meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
</#macro>
所以在其他ftl文件中可以使用他了,比如在home.ftl中:
<#import "/common/app.ftl" as app>
<base href="${app.basePath}/">
这篇关于Freemarcker获取项目根目录的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!