<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
    
<bean id = "mvc" class = "org.MvcContrller"/>
    
    
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        
<property name="prefix" value="/WEB-INF/jsp/" />
        
<property name="suffix" value=".jsp" />
    
</bean>
    
    
<bean id = "urlMapping"   class = "org.springframework.web.servlet.handler.SimpleUrlHandlerMapping" > 
         
<property name = "mappings" > 
             
<props > 
                 
<prop key = "/jsp/hello.xzl" >mvc</prop > 
             
</props > 
         
</property > 
     
</bean > 
    
</beans>


ExtJS教程- Hibernate教程-Struts2 教程-Lucene教程