All Downloads are FREE. Search and download functionalities are using the official Maven repository.

d.kernel-template.1.1.0-RELEASE.source-code.kernel-template.yml Maven / Gradle / Ivy

The newest version!
spring:
  freemarker:
    # 模板后缀名
    suffix: .tpl
    # 文档类型
    content-type: text/html
    # 页面编码
    charset: UTF-8
    # 页面缓存:true=开启;false=关闭;
    cache: false
    # 设定模板的加载路径,多个以逗号分隔,默认:
    template-loader-path:  classpath:/templates/
    # 设置是否允许HttpServletRequest属性覆盖(隐藏)控制器生成的同名模型属性。
    allow-request-override: false
    # 设置是否允许HttpSession属性覆盖(隐藏)控制器生成的同名模型属性。
    allow-session-override: false
    # 检查模板位置是否存在。
    check-template-location: true
    # 为这种技术启用MVC视图解决方案。
    enabled: true
    # 设置是否应该在与模板合并之前将所有请求属性添加到模型中。
    expose-request-attributes: false
    # 设置是否在与模板合并之前将所有HttpSession属性添加到模型中。
    expose-session-attributes: false
    # 设置是否公开RequestContext供Spring宏库使用,名称为“SpringMacroRequestContext”。
    expose-spring-macro-helpers: true
    order: 1
    # 更喜欢文件系统访问模板加载。文件系统访问允许对模板更改进行热检测。
    prefer-file-system-access: true
    # 所有视图的RequestContext属性的名称。
    request-context-attribute: request
    settings:
      # 解决前台使用${}赋值值为空的情况
      classic_compatible: true
      #
      default_encoding: UTF-8
      # 检查模板更新延迟时间,设置为0表示立即检查,如果时间大于0会有缓存不方便进行模板测试
      template_update_delay: 0




© 2015 - 2024 Weber Informatics LLC | Privacy Policy