“我的名字”; }
@RequestMapping(name =“/ getNumber”,method = GET) public Double getNumber(){ 返回new Double(0.0); }}
我有SampleController开始 SpringBoot </跨度> 锟斤拷
或者你可以使用,
@GetMapping("/getName")
与使用value的方法相同,它是指定method =“POST”的新版本,带有请求映射值。
你要用 value 用于定义映射的属性。你用过了 name 现在,它只是为映射提供了一个名称,但根本没有定义任何映射。所以目前你的方法都是未映射的(在这种情况下,两者都映射到相同的路径)。将方法更改为:
value
name
@RequestMapping(value = "/getName", method = GET) public String getName() { return "MyName"; } @RequestMapping(value = "/getNumber", method = GET) public Double getNumber(){ return new Double(0.0); }