Application.xml
<!-- Velocity 에 대한 설정 -->
<bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
<property name="resourceLoaderPath">
<value>/WEB-INF/vm/</value>
</property>
<property name="velocityProperties">
<props>
<prop key="input.encoding">euc-kr</prop>
<prop key="output.encoding">euc-kr</prop>
<prop key="file.resource.loader.cache">false</prop>
</props>
</property>
</bean>
<bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
<property name="exposeRequestAttributes" value="true" />
<property name="exposeSessionAttributes" value="true" />
<property name="exposeSpringMacroHelpers" value="true" />
<property name="requestContextAttribute" value="rc" />
<property name="cache" value="false" />
<property name="suffix" value=".vm" />
<property name="contentType">
<value>text/html; charset=euc-kr</value>
</property>
<property name="toolboxConfigLocation" value="/WEB-INF/toolbox.xml" />
</bean>
'자바(JAVA)' 카테고리의 다른 글
weblogic 8.1 비정상적인 종료로 인해 생긴 <BEA-000364> NumberFormatException 에러 (0) | 2009.01.12 |
---|---|
JConsole 사용하기 (0) | 2009.01.10 |
자바 IO 를 이용한 파일을 라인단위로 읽어 들이는 함수 예제 (0) | 2009.01.04 |
velocity toolbox 에러 (0) | 2008.12.23 |
set Inject 없이 컨테이너에 있는 빈객체를 가져와서 사용하는 방법 (0) | 2008.12.18 |
MessageSource 자동로딩과 방법 (0) | 2008.12.14 |
Eclipse Struts 플러그인 설치와 사용 (0) | 2008.12.13 |
spring 에서 Hibernate 트랜잭션 설정과 sessionFactory 설정법 (2) | 2008.12.08 |