.net core swagger grouping and group hiding
Since there are many swagger interfaces, it is better to divide them into groups. It is more intuitive to view them in the form of pictures and texts
Define groups
Add group
Board display two groups
I want to hide the v1 group, first understand the ApplicationModel
ApplicationModel describes various objects and behaviors in the application, including Application, Controller, Action, Parameter, Router, Page, Property, Filter, etc., and the Asp.Net Core framework itself has a built-in set of rules to process these models , and also provides interfaces for us to customize conventions to extend the model to implement applications that better meet our needs.
ModelConvention defines the entrance to the operating model, through which the model can be modified. Commonly used ones include:
IApplicationModelConvention
IControllerModelConvention
IActionModelConvention
IParameterModelConvention
IPageRouteModelConvention
These interfaces provide a common method Apply, and the method parameters are the respective application models. And it will only be executed once when the program starts
(Text quoted from: https://blog.csdn.net/laosunlaiye/article/details/122174543)
Injection