[Spring Boot] Pebble Template 사용시 request, session 객체 노출 여부 설정

TenaLee·2021년 3월 10일
0
  • 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

참고: Pebble Templates : Boot externalized configuration

profile
Tenacity

0개의 댓글