本例子为你讲解在spring3中如何使用基于注解的mvc框架. 

例子中使用到的工具: 
MyEclipse 9.1 
jdk 1.6 

1.添加Jar包引用 
由于使用了Maven管理项目,所以,第一步就是添加引用.(没有使用Maven怎么办?那你直接下载Spring3的压缩包,添加相应的Jar文件就可以了。) 

Java代码  

  1.   

  2.         org.springframework  

  3.         spring-web  

  4.         3.1.1.RELEASE  

  5.         jar  

  6.         compile  

  7.       

  8.       

  9.         org.springframework  

  10.         spring-core  

  11.         3.1.1.RELEASE  

  12.         jar  

  13.         compile  

  14.       

  15.       

  16.         org.springframework  

  17.         spring-webmvc  

  18.         3.1.1.RELEASE  

  19.         jar  

  20.         compile  

  21.       



2.编写 Controller 和 Mapping 
我们采用注解的方式配置,如果想使用XML的方式,可以查看文档,都是一样的配制方法. 

Java代码  

  1. package com.vito.action;  

  2.   

  3. import org.springframework.stereotype.Controller;  

  4. import org.springframework.ui.ModelMap;  

  5. import org.springframework.web.bind.annotation.RequestMapping;  

  6. import org.springframework.web.bind.annotation.RequestMethod;  

  7.   

  8. @Controller  

  9. @RequestMapping("/welcome")  

  10. public class HelloWorldController {  

  11.     @RequestMapping(value="/hello",method = RequestMethod.GET)  

  12.     public String printWelcome(ModelMap model) {  

  13.         model.addAttribute("message""Spring 3 MVC Hello World");  

  14.         return "hello";  

  15.     }  

  16. }  


3.JSP视图 

Java代码  

  1.   

  2.   

  3.     

    Message : ${message}

         

  4.   

  5.   


4.Spring配置文件 

Java代码  

  1. "http://www.springframework.org/schema/beans"  

  2.     xmlns:context="http://www.springframework.org/schema/context"  

  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

  4.     xsi:schemaLocation="  

  5.         http://www.springframework.org/schema/beans       

  6.         http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  

  7.         http://www.springframework.org/schema/context   

  8.         http://www.springframework.org/schema/context/spring-context-3.0.xsd">  

  9.    

  10.     package="com.vito.action" />  

  11.    

  12.     

  13.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">  

  14.         "prefix">  

  15.                           

  16.             /WEB-INF/pages/  

  17.           

  18.         "suffix">  

  19.             .jsp  

  20.           

  21.       

  22.    

  23.   


5.web.xml 

Java代码  

  1. "1.0" encoding="UTF-8"?>  

  2. "2.5" xmlns="http://java.sun.com/xml/ns/javaee"  

  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  

  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee   

  5.     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">  

  6.       

  7.         springMvc  

  8.         class>org.springframework.web.servlet.DispatcherServletclass>  

  9.           

  10.             contextConfigLocation  

  11.             classpath:applicationContext.xml  

  12.           

  13.       

  14.       

  15.         springMvc  

  16.         /  

  17.       

  18.  


6.成果 
访问:×××/technology
就可以得到这样的画面了: 
Spring MVC HelloWorld入门例子_第1张图片

本站所有代码来源请查看:×××/technology