RestfulBox icon indicating copy to clipboard operation
RestfulBox copied to clipboard

Another powerful toolkit for restful development.

Results 6 RestfulBox issues
Sort by recently updated
recently updated
newest added

hi how can i make a new custom project whose endpoints are not tied with spring boot

com.intellij.diagnostic.PluginException: Can't instantiate configurable for RestfulBox [Plugin: io.github.newhoo.restkit] at com.intellij.openapi.options.ex.ConfigurableWrapper.getConfigurable(ConfigurableWrapper.java:123) at com.intellij.openapi.options.ex.ConfigurableWrapper.cast(ConfigurableWrapper.java:97) at com.intellij.openapi.options.newEditor.SettingsTreeView.findConfigurableProject(SettingsTreeView.java:350) at com.intellij.openapi.options.newEditor.SettingsTreeView$MyRenderer.getTreeCellRendererComponent(SettingsTreeView.java:648) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$NodeDimensionsHandler.getNodeDimensions(BasicTreeUI.java:3220) at java.desktop/javax.swing.tree.AbstractLayoutCache.getNodeDimensions(AbstractLayoutCache.java:497) at java.desktop/javax.swing.tree.VariableHeightLayoutCache$TreeStateNode.updatePreferredSize(VariableHeightLayoutCache.java:1344) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.createNodeAt(VariableHeightLayoutCache.java:767) at java.desktop/javax.swing.tree.VariableHeightLayoutCache.treeNodesInserted(VariableHeightLayoutCache.java:476) at java.desktop/javax.swing.plaf.basic.BasicTreeUI$Handler.treeNodesInserted(BasicTreeUI.java:4365) at com.intellij.util.ui.tree.TreeModelListenerList.treeNodesInserted(TreeModelListenerList.java:85)...

Cannot create configurable com.intellij.diagnostic.PluginException: Cannot create class z (classloader=PluginClassLoader(plugin=PluginDescriptor(name=RestfulBox - API, id=io.github.newhoo.restkit, descriptorPath=plugin.xml, path=~/Library/Application Support/JetBrains/IntelliJIdea2024.2/plugins/RestfulBox, version=5.2.0, package=null, isBundled=false), packagePrefix=null, state=active, parents=PluginDescriptor(name=Kotlin, id=org.jetbrains.kotlin, moduleName=kotlin.features-trainer, descriptorPath=kotlin.features-trainer.xml, path=~/Applications/IntelliJ IDEA Ultimate.app/Contents/plugins/Kotlin, version=242.23339.11-IJ, package=org.jetbrains.kotlin.training, isBundled=true),...

![Image](https://github.com/user-attachments/assets/dd73df3b-d67c-4f65-bf20-0deeb94b08fd) 比如这里排除了 dmcwll-transaction 模块,但是搜索API时,还能搜到该模块下的

Add new export action with postman collection. src/main/java/io/github/newhoo/restkit/toolwindow/tree/ExportApiAction.java ``` @Override public void actionPerformed(@NotNull AnActionEvent e) { Project project = e.getRequiredData(CommonDataKeys.PROJECT); List serviceItems = RestDataKey.SELECTED_SERVICE.getData(e.getDataContext()); if (CollectionUtils.isEmpty(serviceItems)) { e.getPresentation().setVisible(false); return; }...

项目所有 Controller 都是使用的 @RequestMapping(value = "v1/query" **method = RequestMethod.POST**) 注解声明的接口和接口方法类型,插件全都识别不出来,都是 UNDEFINED