springMVC框架搭建

Spring MVC简介

Spring MVC属于SpringFrameWork的后续产品,已经融合在Spring Web Flow里面。Spring 框架提供了构建 Web 应用程序的全功能 MVC 模块。使用 Spring 可插入的 MVC 架构,从而在使用Spring进行WEB开发时,可以选择使用Spring的SpringMVC框架或集成其他MVC开发框架,如Struts1,Struts2等。

环境:

Windows10

Myeclipse 2014

开始。

1、首先创建一个动态项目

springMVC框架搭建_第1张图片

2、导入我们所需要的jar包

springMVC框架搭建_第2张图片

3、配置 web.xml文件(webroot/WEB-INF/web.xml)添加如下代码:

  

     
    	springMVC
    	org.springframework.web.servlet.DispatcherServlet
    	
    	
        	contextConfigLocation
        	classpath:springMVC-servlet.xml
    	
    	1
	

	
    	springMVC
    	/
	

  

    springMVC框架搭建_第3张图片

4、在src下创建 springMVC-servlet.xml文件


                    
 
    
    
 
    
    
 
    
    
     
    
    
        
        
        
        
    

  

    springMVC框架搭建_第4张图片

5、创建java类

    springMVC框架搭建_第5张图片

package test.springMVC;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;


@Controller  //类似Struts的Action
@RequestMapping("/mvc")
public class MvcController {
	@RequestMapping("/hello") // 请求url地址映射,类似Struts的action-mapping
	public String hello(){        
		return "hello";
	}
}

  

    springMVC框架搭建_第6张图片

6、在WEB-INF文件夹下创建文件夹jsp,并创建hello.jsp

    springMVC框架搭建_第7张图片

7、启动项目键入http://corele-pc:8080/springMVC/mvc/hello

    springMVC框架搭建_第8张图片

8、实例结束。

教程参考:

1、http://www.cnblogs.com/superjt/p/3309255.html

2、http://www.admin10000.com/document/6436.html

转载于:https://www.cnblogs.com/dm00/p/6035238.html

你可能感兴趣的:(java,测试,web.xml)