标签:propertyplaceholderhelper html web
public static String render(String pHtmlTemplate, final Map pModel) { PropertyPlaceholderHelper placeholderHelper = new PropertyPlaceholderHelper("${", "}"); String result = placeholderHelper.replacePlaceholders(pHtmlTemplate, new PlaceholderResolver() { @Override public String resolvePlaceholder(String placeholderName) { return Objects.toString(pModel.get(placeholderName), ""); } }); return result; }
上面的方法返回一个携带数据的html, 这样前端js 就不用等到ajax数据之后再渲染.
注: PropertyPlaceholderHelper中 有一句
propVal = parseStringValue(propVal, placeholderResolver, visitedPlaceholders);
这句代码会去解析model中的value. 一般不需要, 可以把它注释掉.
我的实践是: Spring+vuejs+html 的一个web实例.(不用jsp或其它html模板)
本文出自 “ds” 博客,请务必保留此出处http://xnatural.blog.51cto.com/6103484/1927857
标签:propertyplaceholderhelper html web
原文地址:http://xnatural.blog.51cto.com/6103484/1927857