@@ -32,6 +32,7 @@ public class TestController {
}
@RequestMapping("/get/{id}")
public Integer getUser(@PathVariable int id){
+ System.out.println("this is test data");
SysUser user = sysUserService.getById(id);
return user.getId();