thymeleaf 基本对象
**********************
#ctx:上下文对象
thymeleaf context:#ctx 是IContext 对象引用
public interface IContext {
Locale getLocale();
boolean containsVariable(String var1);
Set<String> getVariableNames();
Object getVariable(String var1);
}
**********
#ctx 使用
${#ctx.locale}
${#ctx.varableNames}
thymeleaf web context:#ctx 是 IWebContext 对象引用
public interface IWebContext extends IContext {
HttpServletRequest getRequest();
HttpServ