spring boot先後端傳參

獲取傳參

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

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

對於多個參數的獲取spring

@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 請求,接收前端表單提交的參數json

@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 註解,直接使用便可。restful

@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; 
  //省略getter和setter
} 

@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格式app

  • @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都轉成""。須要設置一個配置ide

@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":"操做成功"}

取配置文件中的值

一、取配置文件中的配置

author.name=zhangsan

可使用@Value註解便可獲取配置文件中的配置信息

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

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

配置信息以下:

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();  
}
相關文章
相關標籤/搜索