SpringBoot中常见注解@Controller@ResponseBody@RestController@RequestMapping@RequestParam

SpringBoot中常见注解@Controller@ResponseBody@RestController@RequestMapping@RequestParam,第1张

SpringBoot中常见注解@Controller@ResponseBody@RestController@RequestMapping@RequestParam
package com.huc.demo.controller;

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;


//@Controller
// 将类标识为Controller层用来接受请求
//@ResponseBody
// 默认返回的是一个页面对象,当使用这个注解之后,可以返回普通对象
@RestController // @RestController=@Controller+@ResponseBody
// 相当于既能标识为Controller层又能返回普通对象

public class TestController {

    @RequestMapping("demo") // 通过括号中的映射名来决定,发送过来的请求调用的是哪个方法
    public String test() {
        System.out.println("123");
        return "success";
    }

    @RequestMapping("demo2")
    public String test2(
            // 当发送过来的请求携带参数时,通过括号中的映射名来决定,对应的是哪个参数
            @RequestParam("name") String name,
            @RequestParam("age") Integer age) {
        System.out.println("1111");
        return "name:" + name + "-" + "age:" + age;

    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5638166.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存