1. /*
    2. * =============================================================================
    3. * See javadoc API for class org.thymeleaf.context.WebServletContextVariablesMap
    4. * =============================================================================
    5. */
    6. ${application.foo} // Retrieves the ServletContext atttribute 'foo'
    7. ${application.size()}
    8. ${application.isEmpty()}
    9. ${application.containsKey('foo')}
    10. ...

    请注意,无需指定用于访问请求属性的名称空间(与request参数相对),因为所有请求属性都作为变量自动添加到上下文中,作为上下文根目录中的变量:

    ${myRequestAttribute}