SSM框架相关配置搭建

WEB-INFO中web.xml相关配置:



  myProject
  
    login.jsp
  
    
   
    org.springframework.web.context.ContextLoaderListener 
  
   
  
  			contextConfigLocation
			 classpath:applicationContext.xml
  
   
  
		DispatcherServlet
			org.springframework.web.servlet.DispatcherServlet
			
			
			contextConfigLocation
			 classpath:springMVC-servlet.xml
			 
			
			
			1
	
	 
	
	
		DispatcherServlet
		*.action
	
	
	
		CharacterEncodingFilter
		
	org.springframework.web.filter.CharacterEncodingFilter
		
		
			encoding
			UTF-8
		
	
	
		CharacterEncodingFilter
		/*
	

springMVC-servlet.xml中的相关(SpringMVC)配置:





        
		
		  
	  	
	  	
			
		

applicationContext.xml中的相关(Spring)配置:




        
		
		
		
		
		
		
		
		
		 
		
		
		
		
			
			
		
		
		
			
			
		
		
		  
		
		
		
	   
	   
	   
       
	  	
		
		
		
		  
		
		    
		
		

mybatis.xm中的相关(Mybatis)配置:





	
		
	
	
	
	
	
	
	
	 
	
		
		
		
		
		
		
		
		
		
		
		
		
	
	

mybaties-generator-core.1.3.2中generator.xml配置:




	
	
	
	
		
		
			 
			
			
		

		
		
		
		
		
			
		
		
		
			
			
		
		
		
			
		
		
		
			
		
		
		
		


你可能感兴趣的:(ssm框架)