自己搞定了,回答一下吧
<!-- VELOCITY SETTING   -->
    <bean id="velocityConfig" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
        <property name="resourceLoaderPath">
            <value>/</value>            
        </property>
        <property name="velocityProperties">
            <props>
                 <prop key="input.encoding">euc-kr</prop>
                <prop key="output.encoding">euc-kr</prop> 
            </props>
        </property>        
    </bean><bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
        <property name="cache" value="true"/>
        <property name="prefix" value=""/>
        <property name="suffix" value=".vm"/>
        <property name="contentType"><value>text/html; charset=euc-kr</value></property>
    </bean>