写程序,大多的配置让人很头痛。有了注解功能,写起来就方便了许多。

在上个springmvc中

  1. control换成

package com.conntrol;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;@Controllerpublic class HelloConntrol {	@RequestMapping(value="/hello.do")	public String hello(String name,Model model){				System.out.println(name);		model.addAttribute("hello", name);				return "index";	}}

2.在springmvc-servlet.xml中改为: