如何configurationJBoss在Eclipse中debugging应用程序?
所以这个项目在周末之前工作得很好(还有其他的问题,但至lessTomcat已经启动了)。 现在,当我尝试启动Tomcat服务器时,它立即出现以下错误: Server Tomcat v7.0 Server at localhost failed to start. 但是,我可以通过Terminal启动Tomcat,而且这个问题发生在Eclipse中( Eclipse Java EE IDE for Web Developers。版本:Juno Service Release 1 Build id:20121004-1855 ) 我search了几个论坛试图find解决scheme,但无济于事! 请帮助有需要的人。
我正在安装Fedora 14(Linux)的全新安装Android SDK。 我安装了eclipse,运行tools / android sdk工具来安装SDK的所有Eclipse组件。 当我自己selectDDMS时,我能够安装DDMS。 而对于最后一个组件 – Android开发人员工具,我得到了粘贴在下面的丑陋的错误消息。 现在我困在Eclipse的依赖地狱。 我已经通过Fedora中的可用软件包进行了search,找不到满足此Eclipse依赖关系的文件。 任何人都可以请求翻译Eclipse所要求的内容以及Fedora包的内容。 丑陋的错误: Cannot complete the install because one or more required items could not be found. Software being installed: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) Missing requirement: Android Development Tools 0.9.9.v201009221407-60953 (com.android.ide.eclipse.adt.feature.group 0.9.9.v201009221407-60953) requires 'org.eclipse.wst.sse.core 0.0.0' but it could not be found
我在eclipse中有一个Maven项目,并且有运行注释处理器来生成代码的Maven目标。 这个代码的输出文件夹是target / generated-sources / apt。 为了让eclipse看到这个生成的代码,我需要将target / generated-sources / apt作为源文件夹添加到eclipse项目中。 但是,这会导致出现types为“Maven Configuration Problem”的错误 项目configuration与pom.xml不是最新的。 运行项目configuration更新 我想我明白为什么这是事实,因为eclipse有一组不同的源文件夹到maven的集合。 但我需要这个不同的设置,因为我需要日食能够看到生成的源文件夹… 在构build纯maven时,这些源文件夹将被maven包含在构build中。 顺便说一句,我已经升级到maven eclipse插件官方的eclipse发布,m2e 1.0 – 以前是m2eclipse。 我想看看是否可以在m2e插件之前find解决方法,然后再回到旧的m2eclipse版本。
在更新SDK之后,Eclipse显示这个错误: ADB服务器没有确认,启动守护进程失败。 当我运行一个Android应用程序,它给了我以下内容: 请确保adb正确位于'D:\ android-sdk-windows \ platform-tools \ adb.exe'并且可以执行。 我该如何解决这个问题?
我在Eclipse中编译和运行我的程序,一切正常,但是当我用Ant打包并运行它时,出现这个错误: Exception in thread "main" java.lang.NoClassDefFoundError: org/supercsv/io/ICsvB eanReader Caused by: java.lang.ClassNotFoundException: org.supercsv.io.ICsvBeanReader at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) Could not find the main class: jab.jm.main.Test. Program will exit. 请注意,这是一个运行时错误,而不是Ant的编译器错误 。 我已经在过去build立了这个项目0个问题,现在当我添加第二个包到我的lib文件夹,它突然对我的行为 ? 这是构build文件供参考: <?xml version="1.0" ?> <project name="ServerJar" default="dist" basedir="."> <description> Builds client […]
我的项目在eclipse中正常运行,但是当我创build这个项目的jar文件并试图通过cmd运行它显示“位置未设置”错误。 我的项目结构是: 方法是(在eclipse中运行): @FXML private void RegularCustomer(ActionEvent event) throws Exception{ Stage stage = (Stage) dailySales.getScene().getWindow(); Scene scene = dailySales.getScene(); FXMLLoader loader = new FXMLLoader(getClass().getResource("../customer/CustomerHome.fxml")); System.out.println(loader.getLocation()); scene.setRoot(loader.load()); stage.setScene(scene); stage.show(); } 这段代码有什么问题? 有一些相对的问题,但它们不同。 他们的代码没有在IDE中运行,但是我的代码在IDE中运行。 参考:我做了一些文件夹结构的变化,并能够成功运行。 但是这个结构太可怕了,因为我把所有的FXML文件和控制器放在同一个包里。
我有一个在Eclipse上设置的dynamicWeb项目,我使用Tomcat 7作为我的Web服务器。 它似乎并没有自动将我的构buildpath中添加到我的库中的第三方JAR放入WEB-INF / lib文件夹中。 有没有办法自动做到这一点? 每当我寻找答案时,我都会find这样的东西。 那我该怎么做呢? 有没有办法configuration我的构buildpath来做到这一点?
generics和方法重载在这里我有一个相当棘手的情况。 看看这个例子类: public class Test { public <T> void setValue(Parameter<T> parameter, T value) { } public <T> void setValue(Parameter<T> parameter, Field<T> value) { } public void test() { // This works perfectly. <T> is bound to String // ambiguity between setValue(.., String) and setValue(.., Field) // is impossible as String and Field are incompatible Parameter<String> […]
我的Javatesting在Eclipse中运行良好。 但现在,当我从运行菜单中重新启动testing时,我收到以下消息: No tests found with test runner 'JUnit 4' 在.classpath文件中,我有所有的jar文件,并在最后有: <classpathentry exported="true" kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> <classpathentry kind="output" path="bin"/> </classpath> 我怎样才能解决这个错误,并让testing再次运行?