SpringMVC 注解开发
先在一个包中创建一个类,然后再配置sprringmvacontroller.xml并链接到该类。 < context :component-scan base-package ="cn.happy.controllerreturn" ></ context :component-scan > 注解开发所创建的类及其方法 通配符:是一种符号,不是精确匹配,而是用来代替 ** 代表任意级别目录,或者没有目录 package cn.happy.Controler; import org.springframework.stereotype. Controller ; import org.springframework.ui.Model; import org.springframework.web.bind.annotation. PathVariable ; import org.springframework.web.bind.annotation. RequestMapping ; import org.springframework.web.bind.annotation.RequestMethod; /** * Created by java on 2017/8/18. */ @Controller @RequestMapping ( "/user" ) public