타임리프는 가져와 표현할 수 있는 객체들이 있다.
기본 객체들을 제공한다.
${#request}
${#response}
${#session}
${#servletContext}
${#locale}
HTTP 요청 파라미터 접근 : param
${param.paramData}
위와 같은 파라미터 값이 들어올때 접근할 수 있다.
HTTP 세션 접근
${session.sessionData}
스프링 빈 접근:@
${@helloBean.hello('Spring!')}