반응형
ㅁ 타임리프를 스프링에 맞춰보자
- xml 설정 (예제에서는 webconfig.java를 만들어서 설정을 bean으로 다 추가 했다)
아래는 xml에 추가해야 될 부분
<!-- SpringResourceTemplateResolver automatically integrates with Spring's own --><!-- resource resolution infrastructure, which is highly recommended. --><bean id="templateResolver"
class="org.thymeleaf.spring4.templateresolver.SpringResourceTemplateResolver">
<property name="prefix" value="/WEB-INF/templates/" />
<property name="suffix" value=".html" />
<!-- HTML is the default value, added here for the sake of clarity. -->
<property name="templateMode" value="HTML" />
<!-- Template cache is true by default. Set to false if you want -->
<!-- templates to be automatically updated when modified. -->
<property name="cacheable" value="true" /></bean>
<!-- SpringTemplateEngine automatically applies SpringStandardDialect and --><!-- enables Spring's own MessageSource message resolution mechanisms. --><bean id="templateEngine"
class="org.thymeleaf.spring4.SpringTemplateEngine">
<property name="templateResolver" ref="templateResolver" />
<!-- Enabling the SpringEL compiler with Spring 4.2.4 or newer can speed up -->
<!-- execution in most scenarios, but might be incompatible with specific -->
<!-- cases when expressions in one template are reused across different data -->
<!-- ypes, so this flag is "false" by default for safer backwards -->
<!-- compatibility. -->
<property name="enableSpringELCompiler" value="true" /></bean>
반응형
'IT > SPRING' 카테고리의 다른 글
스프링부트 기반 jar/war 내장 웹 서버(톰캣) 윈도우 서비스 등록 방법 (0) | 2020.04.16 |
---|---|
AOP를 구성해 본 적이 있나!!! (0) | 2019.06.03 |
[SpringBoot][Tools] 인텔리J에서 스프링부트 핫스왑(HotSwap) 적용하기 (0) | 2019.01.03 |
Spring의 DB 세팅 ORACLE 에서 MYSQL 로 변경 (0) | 2018.12.18 |
[SpringFramework] 스프링 프레임워크 다국어 메세지 처리 정리 (0) | 2018.11.21 |