勾選web-spring web依賴
創(chuàng)建新的類,拼接url
啟動(dòng)
@SpringBootApplication
postman調(diào)用接口http://localhost:8080/h1/h2
package com.example.demo;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/h1")
public class http {@RequestMapping("/h2")
public String toweb(@RequestBody Test param){System.out.println(param.getAge()+"&&&");
System.out.println(param.getName()+"****");
System.out.println("sucess"+param);
return "hello";
}
}
Test是自定義的類,
package com.example.demo;
public class Test {int age;
String name;
@Override
public String toString() {return "Test{" +
"age=" + age +
", name='" + name + '\'' +
'}';
}
public void setAge(int age) {this.age = age;
}
public void setName(String name) {this.name = name;
}
public int getAge() {return age;
}
public String getName() {return name;
}
public Test(int age, String name) {this.age = age;
this.name = name;
}
}
postmen里面的json字段要和類的屬性一致,否則獲取到null,如果不加@RequestBody,則
可以獲取到form-data和x-www-form-urlencoded
@GetMapping("/goods/{id}")
public Goods goods(@PathVariable(name = "id") Integer id) {Goods g = new Goods(id, "草莓", 6.5, new Date(), "好吃");
return g;
}
@RestController
@RequestMapping("/h1")
public class http {@RequestMapping("/h2/{id}")
@ResponseBody
public String toweb(@PathVariable(name = "id") Integer id){System.out.println(id+"&&&");
System.out.println("sucess");
return "543";
}
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級(jí)服務(wù)器適合批量采購(gòu),新人活動(dòng)首月15元起,快前往官網(wǎng)查看詳情吧
當(dāng)前題目:我的第一個(gè)springboot接口項(xiàng)目-創(chuàng)新互聯(lián)
分享路徑:http://www.rwnh.cn/article26/cchpjg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計(jì)、網(wǎng)站建設(shè)、手機(jī)網(wǎng)站建設(shè)、標(biāo)簽優(yōu)化、營(yíng)銷型網(wǎng)站建設(shè)、App開(kāi)發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容