有人可以指导我如何在Eclipse中安装Hibernate工具.我正在使用Eclipse 3.3(我可以升级到3.4).我可以使用Hibernate 3.0或2.0.
我无法安装插件.它没有被发现.更新站点提供错误,指出需要WTP.当我尝试安装它时,它再次给出一些依赖错误EFt等.
我疯了,是不是有一个包安装所有这一切.
我已经安装了eclipse JDE插件(即BlackBerry_JDE_PluginFull_1.0.0.67.exe),我只能为BlackBerry JDE 4.5.0创建一个黑莓项目.当我在窗口中看到 - >首选项 - >黑莓 - >安装了eclipse的组件时,黑莓JDE组件包4.5.0可用,如果我想要有多个JDE应该做什么.是否有除Eclipse之外的任何IDE都是用于BlackBerry Developement.
我有一个Java Eclipse项目,但我没有使用java.exe从命令行运行它.相反,我通过运行java的python脚本运行它.
我想要做的是当我点击eclipse中的'Run'按钮并在Eclipse的控制台窗口中看到输出时运行它.不幸的是,可用的可用运行配置选项有点过于严格,似乎不允许任意"运行任何你喜欢的"配置.
这可能吗?有没有添加这种配置选项的eclipse插件?
我意识到我可能会失去调试器支持,但这对我来说不是问题.
我正在编写一个Eclipse插件,它应该修改Java编辑器中的源代码.我怎样才能确定源部分的位置
所以.
需要通过Eclipse插件获取有关Java代码的静态工具分析选项,特别是针对Struts,Spring和Hibernate的框架.目的主要是引用的分析(而不是质量度量)(类似于Eclipse中的References选项).完成的任务是对具有大量基于框架的代码的应用程序进行影响分析.
我已经开发了一个插件来搜索方法的引用.我想打印引用方法的行号.我搜索通过IMethod类的方法并检查特定的函数引用.现在我想要打印该行号码.我怎么能这样做?帮助
谢谢
我正在开发一个eclipse插件.在这个插件中,我使用反射来执行另一个项目中存在的类中的函数,这是一个hibernate项目.无论何时使用调用,即mymethod.invoke(myobj);
它给出了这个例外
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at packagesearch.DummyExecution.execution(DummyExecution.java:154)
at packagesearch.HelloWorldAction.run(HelloWorldAction.java:48)
at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251)
at org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:229)
at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:583)
at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500)
at org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:452)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348)
at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200)
at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495)
at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:37)
at java.lang.reflect.Method.invoke(Method.java:599)
at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
at org.eclipse.equinox.launcher.Main.main(Main.java:1212)
Caused by: java.lang.NoClassDefFoundError: …Run Code Online (Sandbox Code Playgroud) 我找到了这个python插件列表,但我想我会问是否有人对那里列出的任何东西有任何经验?
如果有任何不同,我对python和动态编程语言都是全新的.
我想将弹出菜单操作提供给由第三方插件提供的现有编辑器.在我的viewerContribution里面我需要指定我想要添加菜单项的编辑器的targetID - 但是如何获得该ID?
到目前为止,我发现的示例代码只对自制编辑有贡献,但从未对已有的编辑做出贡献.
这是Eclipse 3.5之前的版本,因此我使用了"old"org.eclipse.ui.popupMenus扩展点.
eclipse-plugin ×10
java ×5
eclipse ×3
blackberry ×1
hibernate ×1
java-ee ×1
jde ×1
netbeans ×1
python ×1
svn ×1