You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
问题控制器代码如下:这样设置就无法生成 @RestController @RequestMapping("test/")
public class TestController { @GetMapping(value = "/get/{id}")
public User test(@ParamDesc("id") @PathVariable(value = "id") String id){
User u = new User();
return u;
} @GetMapping(value = "/last")
public User test(User user){
return user;
}
@PostMapping(value = "/post")
public User test1(@RequestBody User user){
System.out.println(user);
return user;
}
}
Bug,如图所示在控制器设置前缀就无法在doc.html生成,反之去掉控制器前缀就可以生成文档
The text was updated successfully, but these errors were encountered: