<dependency> <groupId>com.github.xiaour</groupId> <artifactId>xiaour.springboot.sapi.starter</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${project.basedir}/libs/xiaour.springboot.sapi.starter-1.0.jar</systemPath> </dependency>
2.启动类加入注解Sapi和ServletComponentScan
@Sapi(controllers = {"com.example.demo.ctrl","com.example.demo.ctrl2"}) @ServletComponentScan(basePackages = {"com.github.xiaour.api_scanner.servlet"}) @ComponentScan @SpringBootApplication public class DemoApplication { public static void main(String[] args) { SpringApplication.run(DemoApplication.class, args); } }
这里说明一下Sapi的controllers是当前项目中需要被输入API的Controller路径,有多个的话配置多个即可。ServletComponentScan中的com.github.xiaour.api_scanner.servlet路径不要忽略。到这里我们的配置几乎就全部完成了。怎么样?是不是相当简单了。
3.如何使用Sapi?
启动项目后在浏览器打开地址 http://127.0.0.1:{服务端口}/{若有项目路径}/sapi 即可打开Sapi的接口列表页面;每个接口上都有一个绿色的运行按钮,点击运行按钮就会弹出接口详细内容页面(如下图)。点击Send就可以调试接口了。
好啦,各位可以立即使用sapi了,祝各位使用愉快
也欢迎大家访问我的Git托管项目或Star