71.1 编写JSON REST服务
@RestController
public class MyController {
@RequestMapping("/thing")
public MyThing thing() {
return new MyThing();
}
}Last updated
Was this helpful?
@RestController
public class MyController {
@RequestMapping("/thing")
public MyThing thing() {
return new MyThing();
}
}Last updated
Was this helpful?
Was this helpful?