springmvc学习二,注解开发SpringMVC,RestFul风格

1、使用注解开发SpringMVC
在XML注解中,原先的处理器映射器,处理器适配器被取代,不再配置,而且XML也不需要再更改,Bean注入使用注解注入

    
    <context:component-scan base-package="com.hua.controller"/>
    
    <mvc:default-servlet-handler/>
    
    <mvc:annotation-driven/>

    
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        
        <property name="prefix" value="/WEB-INF/jsp/"/>
        
        <property name="suffix" value=".jsp"/>
    bean>

Controller,使用@Controller注解注册Bean,@RequestMapping("/h1"),地址栏地址:http://localhost:8080/springmvc_03_annotation_war_exploded/hello/h1

@Controller
@RequestMapping("/hello")
public class HelloController {

     @RequestMapping("/h1")
     public String hello(Model model){
         //封装数据
         model.addAttribute("msg","Hello,SpringMVC");
         return "hello";//会被视图解析器处理,hello.jsp
     }
}

返回到hello.jsp,打印结果

2、RequestMapping
用于映射URL,可用于类和方法上,用于类上表示,所有请求方法都是以该地址作为父路径

3、RestFul风格
springmvc学习二,注解开发SpringMVC,RestFul风格_第1张图片
需要加上注解:@PathVariable

@Controller
public class RestFulController {
    //原来的方式:http://localhost:8080/springmvc_03_annotation_war_exploded/add?a=1&b=1
    //RestFul:http://localhost:8080/springmvc_03_annotation_war_exploded/add/1/22
    @RequestMapping("/add/{a}/{b}")
    public String test(@PathVariable int a,@PathVariable String b, Model model){
        String rest=a+b;
        model.addAttribute("msg","结果为:"+rest);
        return "test";
    }
}

注:可以使用注解:
@PostMapping,通过post方法提交,默认表单
@GetMapping,通过get方法提交,默认地址栏

你可能感兴趣的:(springmvc)