当前位置:网站首页>Game between apifox and other interface development tools

Game between apifox and other interface development tools

2022-06-24 18:50:00 Leaves without trace

Basically, programmers engaged in back-end development need to have a handy interface testing tool . before , Everybody likes to use postman To test it , That is because there is no good development and testing tool in China . Everyone must know that there is a war between Russia and Ukraine , Various countries have imposed a series of sanctions on Russia , Even the largest gay dating site GitHub Both have launched sanctions against Russia , This is also a wake-up call for Chinese people . If one day postman Can't use , How do programmers test interfaces , Shivering cold , Crack , Soon , Open the baidu , Search interface development tools

Oh, Ho , Isn't this the interface development tool recently developed by Chinese people , I have to test it , How it's really good , I'll uninstall postman 了 , Late at the time , Fast then , I opened my favorite , Use the latest popular Java Development framework springboot To write a simple interface to test .

@RequestMapping("/map")
    public Map<String, Object> getMap() {
        Map<String, Object> map = new HashMap<>(3);

        User user = new User(1, "ww", null);
        map.put(" The author information ", user);
        map.put(" Blog address ""http://blog.ww123.com");
        map.put("CSDN Address ", null);
        map.put(" Number of fans ", 4153);
        return map;
    }

open Apifox To test it ,

First, log in , This experience feels better than postman Better , After all postman It's foreign , It seems that it is difficult to log in successfully , Anyway, I didn't log in successfully , Every time open postman Have to restart the operation , this Apifox It's done well , Can log in directly , Convenient for developers to save addresses , I thought it was a division of labor , This is more convenient for Chinese people under the epidemic

Write the local address directly in the local development , Just write the following request address , Very good . Apifox It's really good , Just for that , I'll use it later Apifox, hope Apifox The development of the team is getting better and better !

原网站

版权声明
本文为[Leaves without trace]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206241731461591.html