spring-mvc入门

spring-mvc入门

一、web.xml配置:



	
	
		contextConfigLocation
		classpath:applicationContext.xml
	
	
		org.springframework.web.context.ContextLoaderListener
	
	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring-mvc.xml
		
	
	
	
		springmvc
		/
	
	

二、applicationContext.xml:



	
	

三、spring-mvc.xml(最重要的配置文件):


		
	
	
	
	
	
	
	
	
		
		
	
	
	 
	
		
		
		
			
				
				
			
		
	
	
	
	
	
		
			
				
			
		
		
	
	
	
	
		
			
				
			
		
		
	
	
	
		
	
	
	
		
		
		
		 
	
	


里面都带了注释,java代码太简单,在这里就不贴。

你可能感兴趣的:(spring-mvc)