使用swagger有办法自动生成文档吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用swagger有办法自动生成文档吗相关的知识,希望对你有一定的参考价值。
使用swagger有办法自动生成文档
public class ListFragmentActivity extends Activity implements HeadlinesFragment.OnHeadlineSelectedListener @Override public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); setContentView(R.layout.news_articles); if (findViewById(R.id.fragment_container) != null) if (savedInstanceState != null) return; HeadlinesFragment firstFragment = new HeadlinesFragment(); firstFragment.setArguments(getIntent().getExtras()); getFragmentManager() .beginTransaction() .add(R.id.fragment_container, firstFragment) .commit(); public void onArticleSelected(int position) ArticleFragment articleFrag = (ArticleFragment) getFragmentManager() .findFragmentById(R.id.article_fragment); if (articleFrag != null) articleFrag.updateArticleView(position); else ArticleFragment newFragment = new ArticleFragment(); Bundle args = new Bundle(); args.putInt(ArticleFragment.ARG_POSITION, position); newFragment.setArguments(args); getFragmentManager() .beginTransaction() .replace(R.id.fragment_container, newFragment) .addToBackStack(null) .commit(); 参考技术A Web API文档工具列表 Swagger ——Swagger框架可以通过代码生成漂亮的在线API,甚至可以提供运行示例。支持Scala、Java、javascript、Ruby、php甚至 Actionscript 3。在线 Demo 。 I/O Docs ——I/O Docs是一个用于RESTful Web APIs的交互式文档系统...以上是关于使用swagger有办法自动生成文档吗的主要内容,如果未能解决你的问题,请参考以下文章