package com.sky.building.controller; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.util.Map; /** * @author LunCe */ @RestController @RequestMapping("web") public class ApiController { @PostMapping("test") public String test(@RequestBody Map map){ Integer aa = null; System.out.println(aa+23); return null; } }