pebble.exposeRequestAttributes:
ViewResolver의 템플릿과 병합하기 전에 모든 요청 속성(Request Attributes)을 모델(Model)에 추가 해야하는지 여부를 정의. 기본값은 false
( defines whether all request attributes should be added to the model prior to merging with the template for the ViewResolver. Defaults to false )
pebble.exposeSessionAttributes:
ViewResolver의 템플릿과 병합하기 전에 모든 세션 속성(Session Attributes)을 모델(Model)에 추가 해야하는지 여부를 정의. 기본값은 false
( defines whether all session attributes should be added to the model prior to merging with the template for the ViewResolver. Defaults to false )
Ex) application.yml
pebble:
suffix: .html
cache: false
exposeSessionAttributes: true
exposeRequestAttributes: true