配置是自动的都是
进入spring官网https://start.spring.io/ 选择maven项目加入web包,freemarker、web、devtools,然后填写项目坐标,下载下来,导入到开发工具就可以了
我爱你宝贝
https://www.cnblogs.com/tenny-peng/p/11534476.html,推荐你阅读这篇文章,有问题可以关注私聊我
重新拉了一个jar好了。。。我也是醉了
jsp太古老,而Freemark,vilocity,thymleaf 都各有优点,可以尝试,而且技术更新频繁,社区也活跃
度娘有缘来相会
将var对象的内容,直接当作字符串输出.即字符串里的HTML标签无效
语法定义这样就是错的哦 只能<#assign a=100/>
百度一下 自己按百度的内容 实际操作一下 能更好的学习
+1~
默认支持,只要改一下后缀名就可以了
因为配置中没有默认的欢迎页,后面需要加上你的静态资源的名字就可以访问到你想访问的了,如果需要加入欢迎页,可以自定义一个实体类,然后继承于WebMvcConfigureAdapter就可以使用了,然后再重写addViewControllers方法就可以写入默认欢迎页的名称了。
freeMarke和html几乎没有什么差别,都使用<>来做命令标签,[]有其特殊的用法,不能混为一谈吧。
@Component public class RoleDirectiveModel implements TemplateDirectiveModel { /** * * @param environment 环境变量 * @param params 指令参数(存储你所需要的值,随便是什么Key-Value你懂的) * @param loopVars 循环变量 返回值 * @param templateDirectiveBody 指令内容 * 除了params外,其他的都能是Null。 * @throws TemplateException * @throws IOException */ @Override public void execute(Environment environment, Map params, TemplateModel[] loopVars, TemplateDirectiveBody templateDirectiveBody) throws TemplateException, IOException { System.out.println("========="); TemplateScalarModel user=(TemplateScalarModel)params.get("user"); TemplateScalarModel role=(TemplateScalarModel)params.get("role"); if("123456".equals(user.getAsString()) && "admin".equals(role.getAsString()) ){ loopVars[0]=TemplateBooleanModel.TRUE; } List<String> otherRights=new ArrayList<>(); otherRights.add("add"); otherRights.add("update"); otherRights.add("delete"); loopVars[1]=new SimpleSequence(otherRights); templateDirectiveBody.render(environment.getOut()); } }
这是自定义指令的定义类
这是加载自定义指令的freemarker java配置类
import com.example.demo.model.tag.RoleDirectiveModel; import com.example.demo.model.tag.SortMethod; import freemarker.template.TemplateModelException; import lombok.extern.slf4j.Slf4j; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import javax.annotation.PostConstruct; @Slf4j @Configuration public class FreeMarkerAutoConfiguration { @Autowired private freemarker.template.Configuration configuration; @Autowired private RoleDirectiveModel roleDirectiveModel; @Autowired private SortMethod sortMethod; @PostConstruct public void setSharedVariable() { try { //自定义标签 configuration.setSharedVariable("role", roleDirectiveModel); configuration.setSharedVariable("sort_int",sortMethod); } catch (Exception e) { log.error("Custom tags failed to load:{}", e.getMessage()); } } }
你这个已经可以取得RequestContext了,但是Freemarker还不支持使用函数本身的方法,只支持内建函数和自定义函数以及宏,所以你这个要获取这个路径必须通过自定义函数来实现。
自己最好按着敲一敲,记忆才加深
不存在你还转,肯定报错啊,你再看一遍上一节老师null值和不存在咋处理的
在页面怎么取值,在js怎么取,取到的值用eval解析下,应该都可以遍历出来了吧
改成如下可以解决这个问题
<p>${(timestamp?string("yyyy-MM-dd"))!'无数据 '}</p>
//创建接口
public interface UserService{
void user();
}
//创建class实现UserService接口
public class UserServiceImpl implements UserService{
public void user(){
};
}
用这个对2取余,只有两种结果, 0和1,你分别给设置两种颜色,就OK了
HTML IOS-8859-1 参考手册:http://www.w3school.com.cn/tags/html_ref_entities.html
web.xml中<welcome-file-list>配置(web欢迎页、首页),然后你访问的是localhost:8080/freemarker,其实你访问的是localhost:8080/freemarker/index.xml.如果你直接访问的是localhost:8080/ 就会到webapp下的index.xml
用HTML的时候