package com.izouma.walkchina.web; import com.izouma.walkchina.entity.User; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller @RequestMapping("/user") public class UserController { @RequestMapping("/get/{id}") @ResponseBody public String getOne( @PathVariable String id){ User user=new User(); } }