NoBugBoy / YDoc

充分利用springboot自有注解来对文档进行描述的一款文档生成器。 让我们抛弃大量注解和配置一起拥抱简洁。
Apache License 2.0
82 stars 13 forks source link

控制器如果绑定RequestMapping访问前缀就无法使用文档生成 #2

Closed HelloZYHs closed 3 years ago

HelloZYHs commented 3 years ago

image Bug,如图所示在控制器设置前缀就无法在doc.html生成,反之去掉控制器前缀就可以生成文档

HelloZYHs commented 3 years ago

问题控制器代码如下:这样设置就无法生成 @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; } }

NoBugBoy commented 3 years ago

emm 你为什么要把斜线写在后面。。 @RequestMapping("/test") 就可以了 。反正也算是个问题 下一版我优化一下

@HelloZYHs

NoBugBoy commented 3 years ago

1.0.7已经修复了这个问题