一.下载spring所需包

  可以从官网下载也可以从网上下载,

  主要是需要以下包即可

 com.springsource.org.aopalliance-1.0.0.jar

 com.springsource.org.apache.commons.logging-1.1.1.jar

 commons-logging-1.2.jar

 spring-aop-3.2.2.jar

 spring-aspects-3.2.2.jar

 spring-beans-3.2.2.jar

 spring-context-3.2.2.jar

 spring-context-support-3.2.2.jar

 spring-core-3.2.2.jar

 spring-expression-3.2.2.jar

 spring-web-3.2.2.jar

 spring-webmvc-3.2.2.jar

二.创建动态web工程,导入所需包,

三.代码

 web.xml

<
?xml version="1.0" encoding="UTF-8"?>

  
springDispatcherServlet
org.springframework.web.servlet.DispatcherServlet

contextConfigLocation

classpath*:springmvc.xml
   
 
1
 
 

springDispatcherServlet
/



springmvc.xml



     
    
    
    
    
    
     
      
    	


java

package com.springmvc.handlers;

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

@Controller
public class Hello {
	  
		@RequestMapping("/hello")
		public String hello(){
			
			System.out.print("hello world");
			
			return "success";
		}
}

index.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>




Insert title here



 hello



success.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>




Insert title here


hello hello



部署直接访问  点击hello即可