SpringMVC最基础配置

SpringMVC和Struts2一样,是前后台的一个粘合剂,struts2用得比较熟悉了,现在来配置一下SpringMVC,看看其最基础配置和基本使用。SpriingMVC不是太难,学习成本不高,现在很多人都喜欢使用它了。

本次demo工程是一个maven工程,使用maven来对项目进行管理。

一、首先需要建立一个maven的webapp工程。

目录结构如下:

二、配置maven的pox.xml


      junit
      junit
      4.10
      test
    
     
        org.springframework
        spring-webmvc
        3.2.8.RELEASE
    
    
        jstl
        jstl
        1.1.2
    
Maven配置界面如下图。

这里我们使用的spring版本是3.2.8.RELEASE;配置好后,maven会自动给我们加载其他依赖的jar包,如下图:


具体依赖的包如下:

1) aopalliance-1.0.jar

2)  commons-logging-1.1.3.jar

3)  spring-aop-3.2.8.RELEASE.jar

4)  spring-beans-3.2.8.RELEASE.jar

5)  spring-context-3.2.8.RELEASE.jar

6)  spring-core-3.2.8.RELEASE.jar

7)  spring-expression-3.2.8.RELEASE.jar

8)  spring-web-3.2.8.RELEASE.jar

9)  spring-webmvc-3.2.8.RELEASE.jar

10)             jstl-1.1.2.jar

三、工程配置

1、建立一个最基础的springMVC测试工程目录结构如下图:

2、application_spring_mvc.xml




	
    

	
    

    
    
    	
    	
    	
    
 	
 	
	
	
	

 

3、web.xml





  
	
		springMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath*:/applicationContext/application_spring_mvc.xml
		
		1
	
	
		springMVC
		/
	
  
  
	        
	    default       
	    *.html      
	   

	
	    index.html
	


4、index.html





  
	
		springMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath*:/applicationContext/application_spring_mvc.xml
		
		1
	
	
		springMVC
		/
	
  
  
	        
	    default       
	    *.html      
	   

	
	    index.html
	

5、UserAction.java





  
	
		springMVC
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath*:/applicationContext/application_spring_mvc.xml
		
		1
	
	
		springMVC
		/
	
  
  
	        
	    default       
	    *.html      
	   

	
	    index.html
	

6、saveUserSuccess.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>




添加用户成功


操作成功了

后台返回的信息:${msg}

四、发布工程到tomcat进行测试

1)  浏览器中输入:http://localhost:8080/demoSpringMVC/

便可进入index.html页面,如下图:

2)  提交后


你可能感兴趣的:(Java开发,Spring)