springboot开发restful接口

一、controller

	@RequestMapping("/userById/{id}")
    public Object getUserById(@PathVariable("id") String id)
    {
     
        return userService.getUserById(id);
    }

这里主要是用@PathVariable注解,注意和两个id的名称要一致

二、mapper

@Mapper
public interface UserMapper
{
     
    List<User> selectAllUser();

    Object getUserById(@Param("id") String id);
}

这里有用的就是@Param注解,用于接收参数

你可能感兴趣的:(springboot)