Questions tagged «eclipse»

Eclipse是用于构建应用程序的开源IDE和平台。有各种用于各种编程语言和其他面向开发工具(例如建模,数据库浏览等)的插件。该标记仅应用于有关Eclipse IDE或平台的特定问题,而不能用于一般化(Java等)编程主题。

21
maven…无法清理项目:无法删除.. \ org.ow2.util.asm-asm-tree-3.1.jar
我使用STS(弹簧工具套件)+ maven插件。 每次当我使用我的应用程序运行时,都会maven-clean看到以下错误: [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building hhsystem ui 1.0.0-SNAPSHOT [INFO] ------------------------------------------------------------------------ [INFO] [INFO] --- maven-clean-plugin:2.4.1:clean (default-clean) @ ui --- [INFO] Deleting C:\Users\Nikolay_Tkachev\workspace\HHSystem\UI\target [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.471s [INFO] Finished at: Mon Oct 21 12:34:33 MSK 2013 [INFO] Final …


4
Eclipse内部错误“轮询新闻提要”
我在MacBook(High Sierra,Java 11)上使用Eclipse(4.9.0)时,有时会显示此错误,如果我在另一个应用程序上,则该错误会在屏幕快照中显示“堆栈”,讨厌再次回到Eclipse并每次都关闭此错误。有人可以帮我解决这个问题吗?



2
如何在Eclipse中自动将默认标头添加到源文件中?
我试图弄清楚如何将评论标头自动添加到Eclipse Java项目中的所有新源文件中。我环顾四周,但没有找到一个自动化该过程的简单解决方案。我尝试了一下JAutodoc,尽管它确实允许我指定一个标头,但我仍然必须手动告诉插件以注入标头,而且它似乎不太喜欢我的关键字替换。 顺便说一下,如果有帮助的话,我将对大多数项目使用Eclipse的Maven2插件。 有小费吗?

14
附加Java源代码
我一生都无法将Java源代码附加到eclipse上,因此我可以看到该语言的内部工作原理。甚至没有像String Class这样简单的东西。 当我运行java -version时,这就是我所拥有的: java version "1.6.0_14" Java(TM) SE Runtime Environment (build 1.6.0_14-b08) Java HotSpot(TM) Client VM (build 14.0-b16, mixed mode, sharing) 我正在从以下网站下载Java资源:http: //download.java.net/jdk6/source/ 当我附加它时,它说: The JAR file "C:\Program Files\Java\jre6\jdk-6u14-fcs-src-b08-jrl-21_may_2009.jar" has no source attachment. 我究竟做错了什么?
70 eclipse  java 

3
在CDT上安装Eclipse JDT
我已经安装了Eclipse CDT,并且我想在CDT安装之上安装Java开发功能(JDT)。我一个小时以来一直在使用Google搜索功能,但是我不知道该怎么做。 我需要安装什么插件?我需要使用哪个更新站点?

27
Spring Boot程序找不到主类
我有一个程序在Eclipse中作为Spring boot App运行。该程序运行良好。然后我做了以下工作: 右键单击项目->运行方式-> Maven测试。 这是偶然的。然后,当我尝试再次将该程序作为Spring Boot应用程序运行时,它在下面抛出了以下错误。 Error: Could not find or load main class com.bt.collab.alu.api.webapp.Application 如何将应用程序指向主类?谢谢



17
m2eclipse错误
我正在使用Eclipse开发Web应用程序,并使用Maven原型生成项目。 当我启用Maven依赖管理时,Eclipse在pom文件中标记了一些错误,该错误是: Multiple annotations found at this line: - Execution default-testResources of goal org.apache.maven.plugins:maven-resources- plugin:2.4.3:testResources failed: Plugin org.apache.maven.plugins:maven-resources-plugin:2.4.3 or one of its dependencies could not be resolved: Failed to collect dependencies for org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3 () (org.apache.maven.plugins:maven-resources- plugin:2.4.3:testResources:default-testResources:process-test-resources) - Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile (execution: default-compile, phase: compile) - …

17
Android Emulator快照错误
在eclipse 3.7.0中启动我的应用程序时,出现错误... 模拟器]模拟器:错误:无法从快照加载Vm。快照已保存为其他硬件配置。 我已经无数次地运行了此应用程序,但是现在显示此错误。我已经检查了我的AVD Manager,并且我的平台和API级别正确。

10
“ SDK平台工具组件丢失!”
我正在尝试通过此线程将添加的SDK Platform 1.6添加到现有的Install 2.2中。 如建议的那样,我运行Help→ Check for Updates,它找到并安装了以下内容: + Android DDMS 8.0.1.v201012062107-82219 + Android Development Tools 8.0.1.v201012062107-82219 It prompted for restarting Eclipse and when it restarted it gave me the following error message: "SDK Platform Tools component is missing! Please use the SDK Manager to install it." Huh? Why? I …

3
Eclipse如何创建具有未解决的编译问题的类?
当我尝试使用javac编译此类时,出现编译错误,并且未创建Test.class。 public class Test { public static void main(String[] args) { int x = 1L; // <- this cannot compile } } 但是当我在Eclipse中创建此类时,我可以看到Test.class出现在目标/类中。当我尝试使用java.exe从命令行运行此类时,我得到了 线程“主” java.lang.Error中的异常:未解决的编译问题: 类型不匹配:无法从long转换为int Eclipse是否使用自己的特殊Java编译器来创建损坏的.class?java.exe如何知道.class中的编译问题?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.