This Eclipse extension adds rich support for the OpenAPI Specification (OAS) (formerly known as Swagger Specification) in JSON or YAML format. The features include, for example, SwaggerUI and ReDoc preview, IntelliSense, linting, schema enforcement, code navigation, definition links, snippets, static security analysis, and more!
The extension also integrates with API Contract Security Audit by 42Crunch, so that you can check the quality of your API definition directly in Eclipse.
Both OAS v2 and v3 are supported.
- OpenAPI extension for Eclipse
After installing the plugin, open any JSON or YAML file that contains an OpenAPI definition in Eclipse. Go to Windows / Perspective / Open Perspective and choose OpenAPI perspective.
OpenAPI extension makes it easier and faster to navigate your OpenAPI definitions, especially when they get longer.
You can home in on elements in the OpenAPI explorer view, or jump directly to the target of a reference in the API. You can also add new elements to your API directly in the OpenAPI explorer directly where they are needed.
- Go to File / New / Other or press Ctrl+N.
- In the wizard select OpenAPI and choose the corresponding item to create either an OAS v2 or v3 template file.
- Write File name and press Finish to save the file to your disk.
- Open an OpenAPI file.
- Switch to the OpenAPI explorer view.
- Expand the sections and elements in the file as needed, and click the ones you want to jump to in the editor.
- In OpenAPI explorer pane, go to the tree node where you want to add a new element (it will be marked with the [+] symbol), and right click on it.
- Click the item you want to add from the dropdown list.
As you start typing OpenAPI ref values, the context-sensitive list of available options is displayed. In JSON OpenAPI files, just type (#
) in double-quotes to show the menu, and type further to filter the list. In YAML OpenAPI files it is possible in single quotes also.
Use Go to Definition to locate the targets of references easily. To jump to view the definition from a reference in your API, either Ctrl+click a reference, or right-click a reference and click Go to Definition in the shortcut menu.
By default, entries in the OpenAPI Explorer pane are sorted alphabetically. If you want to instead have them sorted in the order they are in the OpenAPI file, change the corresponding setting:
- On the Window menu, click Preferences > OpenAPI (Swagger) Editor.
- Clear the checkbox Alphabetically sort contents of OpenAPI explorer outlines.
You can get a documentation-style preview of the API you are editing by clicking the Preview button:
Our extension supports two popular OpenAPI documentation generators: SwaggerUI and ReDoc.
To change the default OpenAPI Preview rendering engine:
- On the Window menu, click Preferences > OpenAPI (Swagger) Editor.
- Pick the option of your choice from the Default Preview Rendered dropdown list.
Note:
- Action is available only for syntactically valid project files.
- Web page is opened in the default system browser.
- Preview service port is 61112 by default, but it can be changed it in the settings wizard if needed.
You can use OpenAPI extension to check the quality of your API as you work on it. You can run the audit directly from Eclipse by clicking the 42C button in the upper right corner.
To run Security Audit from Eclipse, you need a token. On the first time, you are asked to provide your email address. When you supply the address, the extension requests the token to be sent to your mailbox. Once you get the token, paste it in the prompt in Eclipse, and you are all set. From now on, all you need to do is to click the button to run the audit.
After the audit finishes, you get the audit report directly in the Eclipse view, side by side with your code. Depending on your API definition, the report might be long, so here are some handy ways to navigate the found issues.
- To scroll through all issues and their details, use either the HTML panel on the right or bottom Audit Problems panel
- Hover on an underlined element in your code to see what the issues in that spot are. If you click on view details of only these issues, the rest of details are filtered out from the text panel, so you have less to scroll through.
- For a quick overall look, check the counts in the Audit Problems view. The different icons match the severity of the issue:
- Error: critical or high
- Warning: medium
- Info: low
There is a problems filter in the top right corner
- Click the icons in the Status Bar to open the PROBLEMS panel and scroll through the issue titles. The issues are ordered from most to least severe, so it is easy for fix the worst offenders first. Note that recommendations are not listed in the PROBLEMS panel.
- Click on an issue in the PROBLEMS panel to jump to view it inline in your API definition.
Many of the issues reported by the Security Audit have Fixes associated with them. These are code snippets that you can get inserted into the OpenAPI file and then customize with the appropriate value.
- Perform the Security Audit by clicking the 42c button.
- Hover on an error line in your OpenAPI file, you will see the QuickFix icon show up.
Note: sometimes Eclipse doesn't show the QuickFix popup. In this case you can use right click context menu or press Ctrl+1 shortcut.
- Click the icon and select the QuickFix to apply.
- Tweak the values in the inserted code snippet as you see fit.
If your OpenAPI file contains multiple similar issues - for example, a parameter with the same name is missing the pattern definition - you can fix all such occurrences in one go:
- Fix the first occurrence and supply the proper values in the code snippet.
- Go to the next occurrence and use the bulk QuickFix. This bulk QuickFix will reuse the values that you used previously for the parameter with the same name.
This extension features optional integration with 42Crunch Platform. To enable it please configure your credentials in the settings wizard.
Then you can work with the platform using the tree view
You can use OpenAPI extension to work with Data Dictionary if integration with 42Crunch Platform is enabled.
There is a Data Dictionary node in the platform tree. Click on it will open the panel with information about all configured dictionaries and formats.
If platform format mismatches existing properties there are errors with possible fixes become available.
As you typing OpenAPI format values starting with o: the context-sensitive list of available options is displayed.
It is possible to fix all format issues using the right click context menu in the editor.
If file contains format issues, then a user can be asked to choose whether it should be fixed or not before the following actions:
- Security audit
- Uploading file to the platform
This behavior can be changed in the preferences menu.
You can use OpenAPI extension to send requests to the servers for a specific operation in the path.
If the OpenAPI file is valid this option can be run in the context menu:
The following panel is available where you can choose the server and set headers or/and body parameters.
The response contains headers, body, status and if it is successful there is an option to generate a schema based on the response.
In case of HTTPS requests there is an option to ignore certificate errors
It is available both in the try it panel and in the plugin preferences
You can use OpenAPI extension to perform platform scan for a specific path.
If the OpenAPI file is valid this option can be run in the context menu:
The following panel is available where you can choose the server and set headers or/and body parameters.
Frequently used environment variables can be managed using the tab below.
Before scan be sure docker is running locally. Scan results will be shown in the corresponding tab.
Use curl buttons to copy the command to run in terminal for example.
-
No schema validation of OpenAPI files
-
Reference completion is unavailable for external references
-
Generic Text Editor must be a default editor for json / yaml files to use QuickFixes
-
Sometimes Eclipse doesn't show the QuickFix popup, in this case use right click context menu or press Ctrl+1 shortcut
-
Both scan and try it features are currently supported only for OpenAPI version 3.0.x
-
Scan feature does not involve Eclipse console to run curl and docker commands (as opposed to IntelliJ IDEA plugin)
-
Scan feature on Mac, Linux (or other Unix OS) requires interactive login shell capability
The following command can be used to check your environment:
$SHELL --login -c "docker run hello-world"
- Scan feature also requires the ability to run docker command without sudo. On Linux the following commands can be used to setup your environment:
sudo groupadd docker
sudo usermod -aG docker $USER
sudo chown root:docker /var/run/docker.sock
sudo chown -R root:docker /var/run/docker
Extension prior to version 1.40 are compatible with Eclipse 2020-12 or newer releases.
Extension from version 1.40 onwards are compatible with Eclipse 2021-03 or newer releases.
Submit your bug reports at GitHub project Issues.
And, needless to say, your reviews at Eclipse marketplace mean the world to us!