真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

我的第一個springboot接口項目-創(chuàng)新互聯(lián)

  1. idea創(chuàng)建項目

在這里插入圖片描述
勾選web-spring web依賴
在這里插入圖片描述
創(chuàng)建新的類,拼接url
在這里插入圖片描述
啟動
@SpringBootApplication

東光ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為成都創(chuàng)新互聯(lián)公司的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18982081108(備注:SSL證書合作)期待與您的合作!

postman調(diào)用接口http://localhost:8080/h1/h2
在這里插入圖片描述

  1. 帶有參數(shù)的接口
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級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧


分享文章:我的第一個springboot接口項目-創(chuàng)新互聯(lián)
文章URL:http://weahome.cn/article/cchpjg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部