@RestController
public class RestTestController {
    @RequestMapping(value = "/rest_test/{id}")
    public Integer restTest(@PathVariable Integer id){
        return id;
    }
}

Spring Boot集成Rest简单例子

相关文章:

  • 2021-08-01
  • 2021-08-07
  • 2021-06-25
  • 2022-01-13
  • 2021-07-06
  • 2021-05-04
  • 2022-12-23
  • 2021-11-24
猜你喜欢
  • 2021-04-28
  • 2021-09-12
  • 2021-08-19
  • 2022-03-03
  • 2022-12-23
  • 2022-12-23
  • 2021-04-17
相关资源
相似解决方案