91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

springboot中怎么實現前后端傳參

發布時間:2021-07-08 17:04:38 來源:億速云 閱讀:222 作者:Leah 欄目:編程語言

springboot中怎么實現前后端傳參,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

獲取傳參

@PathVariable注解主要用來獲取URL參數。即這種風格的 URL:http://localhost:8080/user/{id}

@GetMapping("/user/{id}") public String testPathVariable(@PathVariable Integer id) {  System.out.println("獲取到的id為:" + id); return "success"; }

對于多個參數的獲取

@GetMapping("/user/{idd}/{name}") public String testPathVariable(@PathVariable(value = "idd") Integer id, @PathVariable String name) {  System.out.println("獲取到的id為:" + id); System.out.println("獲取到的name為:" + name); return "success"; }

@RequestParam:是從 Request 里獲取參數值,即這種風格的 URL:http://localhost:8080/user?id=1。除此之外,該注解還可以用于 POST 請求,接收前端表單提交的參數

@RequestMapping("/user") public String testRequestParam(@RequestParam(value = "idd", required = false) Integer id) { System.out.println("獲取到的id為:" + id); return "success"; }

當參數較多時,可以不用@RequestParam。而是通過封裝實體類來接收參數。

public class User { private String username;private String password;//添加setter和getter }

使用實體接收的話,我們不必在前面加 @RequestParam 注解,直接使用即可。

@PostMapping("/form2") public String testForm(User user) { System.out.println("獲取到的username為:" + user.getUsername()); System.out.println("獲取到的password為:" + user.getPassword()); return "success"; }

上面的是表單實體提交。當JSON格式提交時,需要用@RequestBody。@RequestBody 注解用于接收前端傳來的實體。接收參數為JSON格式的傳遞。

public class User { private String username; private String password; // set get } @PostMapping("/user") public String testRequestBody(@RequestBody User user) { System.out.println("獲取到的username為:" + user.getUsername()); System.out.println("獲取到的password為:" + user.getPassword()); return "success"; }

傳輸時需要傳JSON格式的參數。

Restful格式

前后端傳參一般使用Restful規范

RESTful 架構一個核心概念是“資源”(Resource)。從 RESTful 的角度看,網絡里的任何東西都是資源,可以是一段文本、一張圖片、一首歌曲、一種服務等,每個資源都對應一個特定的 URI(統一資源定位符),并用它進行標示,訪問這個 URI 就可以獲得這個資源。

spring boot的注解很好的支持了restful格式

@GetMapping,處理 Get 請求  @PostMapping,處理 Post 請求  @PutMapping,用于更新資源  @DeleteMapping,處理刪除請求  @PatchMapping,用于更新部分資源

@RestController注解可將返回的數據結果轉換成json格式,在sprinboot中默認使用的JSON解析技術框架是Jackson。基本示例

@RestController @RequestMapping("/") public class Hello {   @GetMapping(value = "hello")   public String hello(){     return "hello world";   } }

對null的處理

在項目中,遇到null值時,希望把null都轉成""。需要設置一個配置

@Configuration public class Jackson {   @Bean  @Primary @ConditionalOnMissingBean(ObjectMapper.class)   public ObjectMapper jacksonObjectMapper(Jackson2ObjectMapperBuilder builder) {     ObjectMapper objectMapper = builder.createXmlMapper(false).build();     objectMapper.getSerializerProvider().setNullValueSerializer(new JsonSerializer<Object>() {       @Override  public void serialize(Object o, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException {         jsonGenerator.writeString("");       }     });     return objectMapper;   } }

就會自動把null值轉換為空值""

包裝統一的JSON返回結構

在后臺返回的接口數據中,一般要求結構是統一的,包括有狀態碼、返回信息。所以可以用泛型封裝一個統一的JSON返回結構

public class JsonResult<T> {    private T data;   private String code;   private String msg;    /**  * 若沒有數據返回,默認狀態碼為0  */ public JsonResult(T data){     this.data = data;     this.code = "10200";     this.msg = "操作成功";   }    //省略getter和setter

修改controller中的代碼

@RequestMapping("/list") public JsonResult<List> getStudentList(){   List<Student> list = new ArrayList<>();   Student stu1 = new Student(2,"22",null);   Student stu2 = new Student(3,"33",null);   list.add(stu1);   list.add(stu2);   return new JsonResult<>(list); }

訪問url,返回的格式將是:

{"data":  [{"id":2,"username":"22","password":""},     {"id":3,"username":"33","password":""}],"code":"10200","msg":"操作成功"}

取配置文件中的值

1、取配置文件中的配置

author.name=zhangsan

可以使用@Value注解即可獲取配置文件中的配置信息

@Value("${author.name}") private String userName;

2、設置配置類來保存配置

配置信息如下:

url.orderUrl=http://localhost:8002 url.userUrl=http://localhost:8003 url.shoppingUrl=http://localhost:8004

新建一個配置類,來保存配置

@Component @ConfigurationProperties(prefix = "url") public class MicroServiceUrl {   private String orderUrl;   private String userUrl;   private String shoppingUrl;   // 省去 get 和 set 方法 }

@Component 注解是把該類作為組件放在spring容器中,使用時直接注入即可。@ConfigurationProperties注解就是指明該類中的屬性名就是配置中去掉前綴后的名字

使用ConfigurationProperties需要加依賴

<dependency>   <groupId>org.springframework.boot</groupId>   <artifactId>spring-boot-configuration-processor</artifactId>   <optional>true</optional> </dependency>

使用Resource注解就可以將添加配置類MicroServiceUrl引入到controller中使用了

@Resource private MicroServiceUrl microServiceUrl;  @GetMapping(value = "getResource") public String getR(){   return microServiceUrl.getUserUrl(); }

關于springboot中怎么實現前后端傳參問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泾阳县| 南涧| 定南县| 股票| 济南市| 象州县| 个旧市| 柯坪县| 二连浩特市| 五常市| 兰坪| 兴文县| 汝南县| 五大连池市| 晋江市| 城市| 武鸣县| 巴林右旗| 乌鲁木齐县| 浦城县| 五家渠市| 祁门县| 霞浦县| 黄冈市| 毕节市| 麻江县| 美姑县| 阳朔县| 福州市| 博兴县| 青冈县| 霸州市| 伽师县| 北流市| 通榆县| 汝城县| 冀州市| 绵阳市| 榆树市| 巧家县| 绥化市|