第一章 Spring MVC 你好spring mvc

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

web.xml




	SpringMvc01
	
		index.html
	

	
	
		springmvc
		org.springframework.web.servlet.DispatcherServlet
		
			contextConfigLocation
			classpath:spring-mvc.xml
		
	
	
	
		springmvc
		*.do
	





spring-mvc.xml





	
    

    
	
		
		
	





helloWorld.jsp


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




Insert title here


${message }






HelloWorldController.java


package com.fx.controller;

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

/**
 * 定义 Controller 控制器
 * @author fx
 *
 */
@Controller
public class HelloWorldController {

	@RequestMapping("/helloWorld")
	public String helloWorld(Model model){
		model.addAttribute("message", "StringMvc你好!");
		//返回helloWorld.jsp
		return "helloWorld";
	}
}


  • SpringMvc01.zip (7.8 MB)
  • 下载次数: 0

你可能感兴趣的:(spring,mvc)